    /* ---------- subtle luxury reset ---------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #ffffff;
      color: #1e2b3c;
      font-family: 'Plus Jakarta Sans', sans-serif;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* COMPANY COLORS - sky blue & burnt orange */
    :root {
      --sky-blue: #87CEEB;        /* light sky blue */
      --burnt-orange: #CC5500;     /* rich burnt orange */
      --blue-deep: #358acf;        /* deeper blue for contrast */
      --orange-soft: #FFE4D6;      /* soft orange background */
      --cream: #F9F6EF;            /* off-white with warmth */
      --ink: #1a3860;              /* deep navy for text */
      --border-light: rgba(94, 122, 145, 0.1);
      --card-shadow: 0 30px 60px -20px rgba(44, 95, 138, 0.2);
      --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .section {
      padding: 80px 0;
    }

    .h2 {
      font-family: 'Playfair Display', serif;
      font-weight: 500;
      font-size: 3rem;
      line-height: 1.2;
      letter-spacing: -0.02em;
      color: #1e2b3c;
    }

    .section-subtitle {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--blue-deep);
      margin-bottom: 20px;
      font-weight: 500;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 3.2rem;
      font-weight: 500;
      color: #1e2b3c;
      line-height: 1.1;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 42px;
      background: transparent;
      border: 1px solid rgba(44, 95, 138, 0.3);
      border-radius: 60px;
      font-weight: 500;
      color: #1e2b3c;
      transition: var(--transition);
      cursor: pointer;
      text-decoration: none;
      font-size: 1rem;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: var(--burnt-orange);
      transition: left 0.4s ease;
      z-index: -1;
    }

    .btn:hover {
      color: white;
      border-color: var(--burnt-orange);
    }

    .btn:hover::before {
      left: 0;
    }

    .btn--primary {
      background: var(--blue-deep);
      color: white;
      border: none;
      box-shadow: 0 15px 30px -12px rgba(44, 95, 138, 0.4);
    }

    .btn--primary::before {
      background: var(--burnt-orange);
    }

    .btn--small {
      padding: 12px 32px;
      font-size: 0.95rem;
    }

    /* View all button container - below slider */
    .slider-footer {
      display: flex;
      justify-content: center;
      margin-top: 30px;
    }
    .view-all-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      border: 1px solid var(--blue-deep);
      border-radius: 60px;
      padding: 12px 36px;
      color: var(--blue-deep);
      font-weight: 500;
      text-decoration: none;
      transition: var(--transition);
    }
    .view-all-btn:hover {
      background: var(--blue-deep);
      color: white;
      border-color: var(--blue-deep);
    }
    .view-all-btn i {
      font-size: 1.2rem;
      transition: transform 0.3s;
    }
    .view-all-btn:hover i {
      transform: translateX(4px);
    }

    /* ---------- refined navigation with logo ---------- */
    .header {
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border-light);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 90px;
    }

    .nav__logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .nav_img{
        width: 70px;
    }

    /*.logo-svg {
      height: 65px;
      width: auto;
    }*/

    .nav__list {
      display: flex;
      gap: 8px;
      list-style: none;
    }

    .nav__link {
      padding: 10px 24px;
      font-weight: 500;
      color: #1e2b3c;
      text-decoration: none;
      font-size: 0.95rem;
      letter-spacing: 0.3px;
      border-radius: 40px;
      transition: var(--transition);
    }

    .nav__link:hover {
      background: var(--sky-blue);
      color: var(--blue-deep);
    }

    .dropdown__item {
      position: relative;
    }

    .dropdown__menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      min-width: 260px;
      padding: 16px 8px;
      border-radius: 24px;
      box-shadow: var(--card-shadow);
      opacity: 0;
      visibility: hidden;
      transform: translateY(15px);
      transition: var(--transition);
      border: 1px solid var(--border-light);
    }

    .dropdown__item:hover .dropdown__menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(8px);
    }

    .dropdown__link {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 24px;
      text-decoration: none;
      color: #1e2b3c;
      border-radius: 40px;
      transition: background 0.2s;
    }

    .dropdown__link i {
      color: var(--burnt-orange);
      font-size: 1.3rem;
    }

    .dropdown__link:hover {
      background: var(--sky-blue);
    }

    /* view more separator in dropdown */
    .dropdown-divider {
      height: 1px;
      background: var(--border-light);
      margin: 8px 16px;
    }
    .view-more-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 24px;
      color: var(--blue-deep);
      font-weight: 600;
      text-decoration: none;
      transition: background 0.2s;
      border-radius: 40px;
    }
    .view-more-link:hover {
      background: var(--sky-blue);
    }
    .view-more-link i {
      font-size: 1.2rem;
    }

    .nav__toggle {
      display: none;
      font-size: 2rem;
      cursor: pointer;
      color: var(--blue-deep);
    }

    @media (max-width: 1024px) {
      .nav__menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 80%;
        max-width: 400px;
        height: calc(100vh - 90px);
        background: white;
        padding: 40px 30px;
        box-shadow: 30px 0 60px rgba(0,0,0,0.05);
        transition: left 0.5s ease;
        overflow-y: auto;
      }
      .nav__menu.show-menu { left: 0; }
      .nav__list { flex-direction: column; }
      .dropdown__menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        border: none;
      }
      .nav__toggle { display: block; }
    }

    /* ---------- hero carousel with per-slide content & responsive height ---------- */
    .hero {
      height: 85vh;
      min-height: 700px;
      background: #eef2f7;
      position: relative;
      overflow: hidden;
    }

    .hero-carousel {
      height: 100%;
      position: relative;
    }

    .hero-carousel .swiper-slide {
      position: relative;
      background-size: cover;
      background-position: center;
    }

    .hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg, rgba(135,206,235,0.2) 0%, rgba(204,85,0,0.1) 100%);
      z-index: 2;
      mix-blend-mode: overlay;
    }

    .hero__content {
      position: absolute;
      bottom: 15%;
      left: 8%;
      z-index: 5;
      max-width: 650px;
      animation: fadeInUp 1s ease;
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero__content h1 {
      font-family: 'Playfair Display', serif;
      font-size: 4.5rem;
      font-weight: 500;
      line-height: 1.1;
      color: #1e2b3c;
      margin-bottom: 20px;
    }

    .hero__content p {
      font-size: 1.2rem;
      color: #3a4a5c;
      margin-bottom: 30px;
    }

    .hero-pagination {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      gap: 8px;
    }
    .hero-pagination .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      background: var(--blue-deep);
      opacity: 0.3;
    }
    .hero-pagination .swiper-pagination-bullet-active {
      background: var(--burnt-orange);
      opacity: 1;
    }

    /* Mobile: smaller hero carousel */
    @media (max-width: 768px) {
      .hero {
        height: 60vh;
        min-height: 500px;
      }
      .hero__content {
        bottom: 10%;
        left: 5%;
        max-width: 90%;
      }
      .hero__content h1 {
        font-size: 2.8rem;
      }
      .hero__content p {
        font-size: 1rem;
        margin-bottom: 20px;
      }
      .hero__content .btn {
        padding: 12px 28px;
        font-size: 0.9rem;
      }
    }

    /* about – relaxed, editorial with scroll reveal */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-banner {
      border-radius: 32px;
      overflow: hidden;
      box-shadow: var(--card-shadow);
      transform: translateX(-30px);
      opacity: 0;
      transition: all 0.8s ease;
      position: relative;
    }
    .about-banner::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(45deg, var(--sky-blue), var(--burnt-orange));
      opacity: 0;
      mix-blend-mode: overlay;
      transition: opacity 0.6s;
      pointer-events: none;
    }
    .about-banner:hover::after {
      opacity: 0.2;
    }
    .about-banner.revealed {
      transform: translateX(0);
      opacity: 1;
    }
    .about-banner img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 1.2s;
    }
    .about-banner:hover img { transform: scale(1.03); }
    .about-content {
      transform: translateX(30px);
      opacity: 0;
      transition: all 0.8s ease 0.2s;
    }
    .about-content.revealed {
      transform: translateX(0);
      opacity: 1;
    }
    .about-content p {
      font-size: 1.2rem;
      color: #3d4e62;
      margin: 30px 0 40px;
    }

    /* Swiper slider common styles */
    .swiper-slide {
      height: auto;
    }
    .swiper-pagination-bullet {
      background: var(--blue-deep);
      opacity: 0.3;
    }
    .swiper-pagination-bullet-active {
      background: var(--burnt-orange);
      opacity: 1;
    }

    /* blog slider */
    .blog-swiper {
      margin-top: 20px;
      padding: 20px 0 40px;
    }
    .post-card {
      background: white;
      border-radius: 24px;
      overflow: hidden;
      transition: var(--transition);
      height: 100%;
      box-shadow: 0 8px 25px rgba(0,0,0,0.03);
    }
    .post-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--card-shadow);
    }
    .post-img {
      height: 260px;
      width: 100%;
      object-fit: cover;
      transition: transform 0.8s;
    }
    .post-card:hover .post-img { transform: scale(1.05); }
    .post-content {
      padding: 25px;
    }
    .post-content h2 a {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 500;
      color: #1e2b3c;
      text-decoration: none;
      line-height: 1.3;
      transition: color 0.3s;
    }
    .post-content h2 a:hover { color: var(--burnt-orange); }
    .post-meta {
      display: flex;
      justify-content: space-between;
      margin-top: 15px;
      color: #6b7a8d;
      font-size: 0.9rem;
      border-top: 1px solid var(--border-light);
      padding-top: 15px;
    }
    .date { color: var(--blue-deep); font-weight: 500; }

    /* locations slider */
    .locations-swiper {
      margin-top: 20px;
      padding: 20px 0 40px;
    }
    .location-card {
      background: white;
      border-radius: 32px;
      overflow: hidden;
      border: 1px solid var(--border-light);
      transition: var(--transition);
      height: 100%;
    }
    .location-card:hover { 
      box-shadow: var(--card-shadow);
      transform: translateY(-6px);
    }
    .location-img {
      height: 220px;
      overflow: hidden;
      position: relative;
    }
    .location-img::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(45deg, var(--sky-blue), var(--burnt-orange));
      opacity: 0;
      mix-blend-mode: overlay;
      transition: opacity 0.4s;
      z-index: 1;
    }
    .location-card:hover .location-img::before { opacity: 0.2; }
    .location-img img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.8s;
    }
    .location-card:hover img { transform: scale(1.06); }
    .location-info {
      padding: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .location-info h3 { font-size: 1.3rem; font-weight: 500; }
    .location-info h3 a { text-decoration: none; color: #1e2b3c; transition: color 0.3s; }
    .location-info h3 a:hover { color: var(--blue-deep); }
    .location-count { 
      color: var(--blue-deep); 
      font-weight: 500;
      background: var(--sky-blue);
      padding: 5px 12px;
      border-radius: 40px;
      font-size: 0.85rem;
    }

    /* properties – spacious grid (keep as grid for featured) */
    .property-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin: 40px 0 20px;
    }
    .property-card {
      background: white;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0,0,0,0.02);
      transition: var(--transition);
      border: 1px solid var(--border-light);
      position: relative;
    }
    .property-card:hover {
      box-shadow: var(--card-shadow);
      transform: translateY(-8px);
    }
    .card-banner {
      height: 260px;
      overflow: hidden;
      position: relative;
    }
    .card-banner::after {
      content: '';
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      background: linear-gradient(to bottom, transparent 60%, rgba(44,95,138,0.1));
      opacity: 0;
      transition: opacity 0.4s;
    }
    .property-card:hover .card-banner::after { opacity: 1; }
    .card-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1s;
    }
    .property-card:hover .card-banner img { transform: scale(1.07); }
    .card-content { padding: 25px; }
    .card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 500;
      text-decoration: none;
      color: #1e2b3c;
      transition: color 0.3s;
    }
    .card-title:hover { color: var(--blue-deep); }
    .card-list {
      display: flex;
      gap: 20px;
      margin: 15px 0;
      color: #5e6f82;
    }
    .card-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px dashed var(--border-light);
      padding-top: 15px;
    }
    .price {
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--blue-deep);
    }

    /* testimonials swiper */
    .testimonials {
      background: var(--cream);
    }
    .testimonial-swiper {
      max-width: 1000px;
      margin: 40px auto 0;
      padding-bottom: 50px;
    }
    .testimonial-item {
      background: white;
      border-radius: 48px;
      padding: 50px;
      display: flex;
      gap: 40px;
      align-items: center;
      border: 1px solid var(--border-light);
    }
    .testimonial-item img {
      width: 110px;
      height: 110px;
      border-radius: 200px;
      object-fit: cover;
      border: 4px solid var(--sky-blue);
    }
    .testimonial-content h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 500;
      margin-bottom: 10px;
    }
    .btn-link {
      background: none;
      border: none;
      color: var(--blue-deep);
      font-weight: 600;
      cursor: pointer;
      text-decoration: underline 1px solid rgba(44,95,138,0.2);
      text-underline-offset: 6px;
    }

    /* contact – subtle gradient with pulse */
    .contact-section {
      background: linear-gradient(135deg, var(--sky-blue) 0%, var(--burnt-orange) 100%);
      opacity: 0.95;
      border-radius: 60px 60px 0 0;
      text-align: center;
      padding: 80px 20px;
      position: relative;
      overflow: hidden;
    }
    .contact-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: 3.2rem;
      font-weight: 500;
      color: white;
      text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .contact-section p { color: white; opacity: 0.9; }
    .contact-section .btn { background: white; color: var(--blue-deep); border: none; }

    /* ---------- refined footer ---------- */
    footer {
      background: #0A1A2B;
      padding: 70px 40px 30px;
      color: #e0e7ef;
      border-top: 1px solid rgba(135,206,235,0.1);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr 1.5fr;
      gap: 60px;
      max-width: 1300px;
      margin: 0 auto;
    }
    .footer-logo-svg {
      height: 70px;
      margin-bottom: 20px;
    }
    .footer-img{
      width: 80px;
      height: 70px;
    }

    .footer-logo p {
      color: #a0b8cc;
      font-size: 0.95rem;
      line-height: 1.6;
      max-width: 280px;
    }
    .footer-col h4 {
      color: white;
      font-weight: 600;
      margin-bottom: 25px;
      font-size: 1.1rem;
      letter-spacing: 0.5px;
      position: relative;
    }
    .footer-col h4::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 40px;
      height: 2px;
      background: var(--burnt-orange);
    }
    .footer-col ul li {
      list-style: none;
      margin-bottom: 14px;
    }
    .footer-col ul li a {
      color: #b0c4d9;
      text-decoration: none;
      transition: color 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .footer-col ul li a:hover {
      color: var(--burnt-orange);
    }
    .footer-col ul li a i {
      font-size: 1.1rem;
      color: var(--sky-blue);
    }
    .contact-info p {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      color: #b0c4d9;
    }
    .contact-info i {
      color: var(--sky-blue);
      font-size: 1.2rem;
      width: 24px;
    }
    .newsletter-form {
      display: flex;
      gap: 10px;
      margin: 25px 0 20px;
    }
    .newsletter-form input {
      flex: 1;
      padding: 14px 18px;
      border-radius: 60px;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.05);
      color: white;
      font-size: 0.95rem;
    }
    .newsletter-form input::placeholder {
      color: #7f9bb5;
    }
    .newsletter-form button {
      background: var(--burnt-orange);
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
      transition: transform 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .newsletter-form button:hover {
      transform: scale(1.1);
    }
    .social-links {
      display: flex;
      gap: 12px;
      margin-top: 25px;
    }
    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: rgba(255,255,255,0.05);
      border-radius: 50%;
      color: var(--sky-blue);
      font-size: 1.3rem;
      transition: var(--transition);
      text-decoration: none;
    }
    .social-links a:hover {
      background: var(--burnt-orange);
      color: white;
      transform: translateY(-4px);
    }
    .copyright {
      text-align: center;
      color: #7f9bb5;
      margin-top: 60px;
      padding-top: 30px;
      border-top: 1px solid rgba(255,255,255,0.05);
      font-size: 0.9rem;
    }

    /* popup */
    .popup-ad {
      position: fixed;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%) scale(0.9);
      background: white;
      border-radius: 60px;
      max-width: 900px;
      width: 90%;
      display: flex;
      flex-wrap: wrap;
      z-index: 1000;
      opacity: 0; visibility: hidden;
      transition: 0.4s;
      box-shadow: 0 40px 80px rgba(44,95,138,0.3);
    }
    .popup-ad.show { 
      opacity: 1; 
      visibility: visible; 
      transform: translate(-50%, -50%) scale(1);
    }
    .popup-ad img { width: 40%; border-radius: 60px 0 0 60px; object-fit: cover; }
    .popup-content { width: 60%; padding: 40px; }
    .popup-content h3 { font-size: 2rem; font-family: 'Playfair Display', serif; color: var(--blue-deep); }
    .close-btn {
      position: absolute; top: 20px; right: 25px; font-size: 2rem; cursor: pointer;
    }
    .overlay {
      position: fixed; inset: 0; background: rgba(0,0,0,0.2); backdrop-filter: blur(4px);
      z-index: 999; opacity: 0; visibility: hidden;
    }
    .overlay.show { opacity: 1; visibility: visible; }

    @media (max-width: 1000px) {
      .about-grid, .property-list, .footer-grid { grid-template-columns: 1fr; }
      .testimonial-item { flex-direction: column; text-align: center; padding: 30px; }
      .container { padding: 0 20px; }
    }




    /*--COOKIES POLICY/PRIVACY--*/
     /* GDPR Cookie Consent Styles */
   /* GDPR Cookie Consent Styles - with unique prefix to avoid conflicts *
    .gasvine-gdpr-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0, 0, 0, 0.6) !important;
        backdrop-filter: blur(5px) !important;
        -webkit-backdrop-filter: blur(5px) !important;
        z-index: 10000 !important;
        transition: opacity 0.3s ease !important;
    }

    .gasvine-gdpr-popup {
        position: fixed !important;
        bottom: 30px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        max-width: 600px !important;
        width: 90% !important;
        background: white !important;
        border-radius: 24px !important;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
        z-index: 10001 !important;
        animation: gasvineSlideUp 0.5s ease !important;
        border: 1px solid rgba(44, 95, 138, 0.2) !important;
    }

    @keyframes gasvineSlideUp {
        from {
            opacity: 0;
            transform: translate(-50%, 20px);
        }
        to {
            opacity: 1;
            transform: translate(-50%, 0);
        }
    }

    .gasvine-gdpr-content {
        padding: 30px !important;
    }

    .gasvine-gdpr-header {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        margin-bottom: 15px !important;
    }

    .gasvine-gdpr-header i {
        font-size: 2rem !important;
        color: #CC5500 !important;
    }

    .gasvine-gdpr-header h2 {
        font-family: 'Playfair Display', serif !important;
        font-size: 1.5rem !important;
        color: #2C5F8A !important;
        margin: 0 !important;
    }

    .gasvine-gdpr-text {
        color: #4a5f73 !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
        font-size: 0.95rem !important;
    }

    .gasvine-gdpr-options {
        margin-bottom: 25px !important;
        background: #F9F6EF !important;
        border-radius: 16px !important;
        padding: 15px !important;
        display: none !important;
    }

    .gasvine-gdpr-option {
        display: flex !important;
        align-items: flex-start !important;
        gap: 12px !important;
        margin-bottom: 15px !important;
    }

    .gasvine-gdpr-option:last-child {
        margin-bottom: 0 !important;
    }

    .gasvine-gdpr-option input[type="checkbox"] {
        width: 18px !important;
        height: 18px !important;
        margin-top: 3px !important;
        cursor: pointer !important;
        accent-color: #CC5500 !important;
    }

    .gasvine-gdpr-option label {
        flex: 1 !important;
        cursor: pointer !important;
    }

    .gasvine-gdpr-option strong {
        display: block !important;
        color: #2C5F8A !important;
        margin-bottom: 3px !important;
    }

    .gasvine-gdpr-option span {
        font-size: 0.85rem !important;
        color: #6b7f92 !important;
    }

    .gasvine-gdpr-buttons {
        display: flex !important;
        gap: 12px !important;
        margin-bottom: 15px !important;
    }

    .gasvine-gdpr-btn {
        flex: 1 !important;
        padding: 14px 20px !important;
        border: none !important;
        border-radius: 60px !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        font-size: 0.95rem !important;
    }

    .gasvine-gdpr-btn.accept {
        background: #CC5500 !important;
        color: white !important;
    }

    .gasvine-gdpr-btn.accept:hover {
        background: #2C5F8A !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 10px 20px -10px #CC5500 !important;
    }

    .gasvine-gdpr-btn.customize {
        background: transparent !important;
        border: 2px solid #CC5500 !important;
        color: #CC5500 !important;
    }

    .gasvine-gdpr-btn.customize:hover {
        background: #FFE4D6 !important;
    }

    .gasvine-gdpr-footer {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        font-size: 0.8rem !important;
        color: #6b7f92 !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
    }

    .gasvine-policy-links {
        display: flex !important;
        gap: 15px !important;
    }

    .gasvine-policy-links a {
        color: #2C5F8A !important;
        text-decoration: none !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 4px !important;
        transition: color 0.3s !important;
    }

    .gasvine-policy-links a:hover {
        color: #CC5500 !important;
        text-decoration: underline !important;
    }

    .gasvine-policy-links i {
        font-size: 1rem !important;
    }

    .gasvine-gdpr-hidden {
        display: none !important;
    }

    /* Blur effect for body *
    body.gasvine-blurred {
        filter: blur(8px) !important;
        pointer-events: none !important;
        transition: filter 0.3s ease !important;
    }

    @media (max-width: 768px) {
        .gasvine-gdpr-popup {
            width: 95% !important;
            bottom: 20px !important;
        }
        
        .gasvine-gdpr-content {
            padding: 20px !important;
        }
        
        .gasvine-gdpr-buttons {
            flex-direction: column !important;
        }
        
        .gasvine-gdpr-footer {
            flex-direction: column !important;
            align-items: flex-start !important;
        }
    }
