:root {
      --primary: #10b981;
      --primary-dark: #059669;
      --secondary: #34d399;
      --dark: #ffffff;
      --dark-light: #f8f9fa;
      --dark-lighter: #e9ecef;
      --light: #ffffff;
      --text: #333333; /* Very dark grey, almost black */
      --text-muted: #555555; /* Darker, more muted grey */
      --accent: #10b981;
      --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      --shadow: 0 10px 25px rgba(0,0,0,0.1);
      --border-radius: 12px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--dark);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Header & Navigation */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: white; /* Solid white background */
      /* backdrop-filter: blur(10px); Removed */
      padding: 5px 30px; /* Even more compact padding */
      display: flex;
      justify-content: space-between;
      align-items: center; /* Vertically center items */
      z-index: 1000;
      border-bottom: 1px solid rgba(0,0,0,0.1);
      box-shadow: 0 1px 5px rgba(0,0,0,0.08); /* More subtle shadow */
      height:90px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1.5rem;
      font-weight: 700;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .logo img{
      max-width: 130px; /* Even further reduced desktop max width */
    }
    

    @media (max-width: 768px) {
      .logo img {
        max-width: 120px; /* Further reduced mobile max width */
      }
    }



    .nav-container {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .main-nav {
      display: flex;
      gap: 25px;
      margin-top: 2px; /* Move nav menu slightly down (less) */
    }

    .main-nav a {
      text-decoration: none;
      color: var(--text-muted);
      font-weight: 500;
      padding: 8px 16px;
      border-radius: 8px;
      transition: all 0.3s ease;
      position: relative;
    }

    .main-nav a:hover {
      color: var(--primary);
      background: rgba(16, 185, 129, 0.1);
    }

    .nav-number {
      color: white;
      width: 24px;
      height: 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 600;
      margin-right: 8px;
      transition: all 0.3s ease;
    }

    .nav-number:nth-child(1) {
      background: var(--primary);
      border-radius: 50%;
    }

    .nav-number:nth-child(2) {
      background: var(--secondary);
      border-radius: 4px;
    }

    .nav-number:nth-child(3) {
      background: var(--primary-dark);
      border-radius: 6px;
      transform: rotate(45deg);
    }

    .nav-number:nth-child(4) {
      background: var(--accent); /* Use accent color for background */
      color: white; /* White text color */
      border-radius: 50%; /* Make it a circle */
    }

    .other-services-btn {
      background: var(--gradient);
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 25px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      font-size: 14px;
    }

    .other-services-btn:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }

    .lang-toggle {
      display: flex;
      background: var(--dark-lighter);
      border-radius: 20px;
      padding: 4px;
    }

    .lang-btn {
      padding: 6px 12px;
      border: none;
      background: transparent;
      color: var(--text-muted);
      border-radius: 16px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 12px;
      font-weight: 500;
    }

    .nav-contact-btn {
      background: var(--gradient);
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 25px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .nav-contact-btn:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }

    .menu-btn {
      display: none;
      background: none;
      border: none;
      color: black;
      font-size: 24px;
      cursor: pointer;
    }

    .hero h1 {
      font-size: clamp(3rem, 7vw, 4.5rem); /* Increased font size */
      font-weight: 800; /* Increased font weight */
      margin-bottom: 20px; /* Adjusted margin */
      line-height: 1.1;
      color: var(--text);
    }

    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      text-align: left;
      padding: 95px 20px 80px; /* Adjusted top padding for even smaller header */
      background: var(--light);
      position: relative;
    }

    .hero-content {
      max-width: 1200px;
      width: 100%;
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      font-size: clamp(2.5rem, 6vw, 4rem);
      font-weight: 700;
      margin-bottom: 24px;
      line-height: 1.2;
      color: var(--text);
    }

    .hero-description {
      font-size: 1.2rem;
      color: var(--text);
      margin-bottom: 40px;
      font-weight: 400;
      line-height: 1.5;
    }

    .hero-cta {
      display: flex;
      gap: 20px;
      justify-content: flex-start;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }



    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 18px 36px;
      border: none;
      border-radius: var(--border-radius);
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 16px;
    }

    .btn-primary {
      background: var(--gradient);
      color: white;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }

    .btn-secondary {
      background: transparent;
      color: var(--text);
      border: 2px solid var(--primary);
    }

    .btn-secondary:hover {
      background: var(--primary);
      color: white;
    }

    /* Sections */
    section {
      padding: 120px 20px 80px 20px; /* Adjusted top padding */
    }

    @media (min-width: 1201px) {
      section:not(#hero) { /* Apply max-width to sections other than hero on large screens */
        max-width: 1200px;
        margin: 0 auto;
      }
    }

    .section-title {
      font-size: 3rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 20px;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      overflow: visible;
    }

    .section-subtitle {
      text-align: center;
      color: var(--text-muted);
      font-size: 1.1rem;
      margin-bottom: 60px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Service List */
    .service-list {
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 800px;
    }

    .service-item {
      background: var(--dark-light);
      border: 1px solid var(--dark-lighter);
      border-radius: var(--border-radius);
      padding: 20px 25px;
      margin-bottom: 15px;
      transition: all 0.3s ease;
      position: relative;
      text-align: left;
    }

    .service-item:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
      border-color: var(--primary);
    }

    .service-item::before {
      content: '•';
      color: var(--primary);
      font-size: 1.5rem;
      position: absolute;
      left: 10px;
      top: 15px;
    }

    .service-title {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 5px;
      padding-left: 25px; /* Make space for the bullet */
    }

    .service-description {
      color: var(--text-muted);
      line-height: 1.5;
      padding-left: 25px; /* Make space for the bullet */
    }

    /* Cards */
    .cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr); /* Force 2 columns */
      gap: 30px;
      margin-bottom: 40px;
    }

    @media (max-width: 768px) {
      .cards {
        grid-template-columns: 1fr; /* Single column on small screens */
      }
    }

    .card {
      background: var(--dark-light);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--border-radius);
      padding: 30px;
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      text-decoration: none; /* Remove underline */
      box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* Subtle shadow */
    }

    .card:hover {
      transform: translateY(-5px); /* Lift effect */
      border-color: var(--primary);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1); /* More prominent shadow on hover */
    }

    .card-icon {
      font-size: 3rem;
      margin-bottom: 20px;
      display: block;
    }

    .card-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 10px; /* Adjusted margin */
      color: var(--text);
    }

    .card-description {
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* Expandable Cards */
    .expandable-card {
      cursor: pointer;
    }

    .card-content {
      transition: all 0.3s ease;
    }

    .card-expanded {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      margin-top: 15px;
      padding-top: 15px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    .card.expanded .card-expanded {
      max-height: 200px;
    }

    .expand-indicator {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 18px;
      transition: transform 0.3s ease;
    }

    .card.expanded .expand-indicator {
      transform: rotate(45deg);
    }

    /* Process Flow */
    .process-flow {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 60px 0;
      position: relative;
    }

    .process-step {
      flex: 1;
      text-align: center;
      position: relative;
    }

    .process-number {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: 700;
      margin: 0 auto 20px;
      color: white;
    }

    .process-title {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .process-description {
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .process-arrow {
      position: absolute;
      top: 30px;
      right: -25px;
      font-size: 24px;
      color: var(--primary);
      z-index: 1;
    }

    .process-step:last-child .process-arrow {
      display: none;
    }

    /* FAQ */
    .faq-item {
      margin-bottom: 20px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--border-radius);
      overflow: hidden;
      background: var(--dark-light);
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      border-left: 3px solid transparent;
    }

    .faq-item:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
    }

    .faq-item.active {
      border-left-color: var(--primary);
    }

    .faq-question {
      background: var(--dark-lighter);
      padding: 20px;
      cursor: pointer;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.3s ease;
    }

    .faq-question:hover {
      background: rgba(16, 185, 129, 0.1);
      color: var(--primary);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: var(--text-muted);
      line-height: 1.6;
      transition: max-height 0.5s ease, padding 0.5s ease;
    }

    .faq-answer.active {
        max-height: 300px; /* Adjust as needed */
        padding: 20px;
    }

    .faq-toggle {
      font-size: 24px;
      transition: transform 0.3s ease;
    }

    .faq-item.active .faq-toggle {
      transform: rotate(90deg);
    }

    /* Cal.com Integration - Improved */
    .calendar-container {
      background: var(--light);
      border-radius: var(--border-radius);
      padding: 0;
      margin: 40px auto;
      border: 1px solid rgba(16, 185, 129, 0.2);
      box-shadow: var(--shadow);
      max-width: 100%;
      overflow: hidden;
    }

    .calendar-embed {
      width: 100%;
      min-height: 700px;
      border: none;
      border-radius: var(--border-radius);
      background: white;
    }

    .calendar-loading {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 400px;
      background: var(--light);
      color: var(--dark);
      font-size: 1.1rem;
    }

    .calendar-fallback {
      text-align: center;
      padding: 40px;
      background: var(--light);
      color: var(--dark);
      border-radius: var(--border-radius);
    }

    .calendar-fallback h3 {
      margin-bottom: 20px;
      color: var(--primary);
    }

    .calendar-fallback p {
      margin-bottom: 15px;
    }

    .calendar-fallback a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
    }

    .calendar-fallback a:hover {
      text-decoration: underline;
    }

    /* Mobile Calendar Optimization */
    @media (max-width: 768px) {
      .calendar-container {
        margin: 20px 0;
        border-radius: 8px;
      }
      
      .calendar-embed {
        min-height: 600px;
        border-radius: 8px;
      }
    }

    /* Contact Info */
    .contact-info {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin: 40px 0;
      flex-wrap: wrap;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-item:hover {
      color: var(--primary);
    }

    /* Footer */
    footer {
      background: var(--dark-lighter);
      text-align: center;
      padding: 40px 20px;
      margin-top: 80px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      header {
        padding: 5px 5px;
        height: 70px;
      }

      .nav-container {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid rgba(0,0,0,0.1);
        z-index: 1001;
        overflow-x: hidden;
      }

      .nav-container.active {
        display: flex;
      }

      .main-nav a {
        color: var(--text);
      }

      .lang-btn {
        color: var(--text);
      }

      .main-nav {
        flex-direction: column;
        width: 100%;
        gap: 15px;
      }

      .main-nav a {
        padding: 12px 20px;
        border-radius: 8px;
      }

      .menu-btn {
        display: block;
        position: absolute;
        right: 10px;
        padding: 8px;
        background: rgba(0,0,0,0.1);
        border-radius: 4px;
      }

      .hero {
        padding: 80px 15px 60px;
      }

      .hero h1 {
        font-size: 2rem;
        margin-bottom: 20px;
      }

      .hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
      }

      .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
      }

      .btn {
        padding: 16px 32px;
        font-size: 15px;
      }

      section {
        padding: 60px 15px 40px;
      }

      .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
      }

      .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
      }

      .process-flow {
        flex-direction: column;
        gap: 40px;
      }

      .process-arrow {
        display: none;
      }

      .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }

      .cards {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .card {
        padding: 25px 20px;
      }

      .faq-question {
        padding: 18px 15px;
        font-size: 0.95rem;
      }

      .faq-answer {
        padding: 0 15px;
      }

      .faq-answer.active {
        padding: 15px;
      }

      .trusted-by {
        padding: 40px 15px;
      }

      .trusted-logos {
        gap: 30px;
      }

      .team {
        padding: 60px 15px;
      }

      .footer-links {
        flex-direction: column;
        gap: 15px;
      }

      footer {
        padding: 30px 15px;
        margin-top: 40px;
      }
    }




    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }

    .animate-on-scroll.animated {
      opacity: 1;
      transform: translateY(0);
    }

    /* Trusted By Section */
    .trusted-by {
      padding: 60px 20px;
      background: var(--dark-light);
      text-align: center;
    }

    .trusted-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--text-muted);
      margin-bottom: 40px;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .trusted-logos {
      display: flex;
      align-items: center;
      gap: 60px;
      flex-wrap: nowrap;
      overflow-x: auto;
      padding-bottom: 10px; /* Add some padding for the scrollbar */
      /* Hide scrollbar for different browsers */
      -ms-overflow-style: none;  /* IE and Edge */
      scrollbar-width: none;  /* Firefox */
    }

    /* Hide scrollbar for Webkit browsers */
    .trusted-logos::-webkit-scrollbar {
      display: none;
    }

    .trusted-logo {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--text-muted);
      padding: 15px 25px;
      border: 2px solid var(--dark-lighter);
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .trusted-logo:hover {
      color: var(--primary);
      border-color: var(--primary);
      opacity: 1;
    }

    /* Team Section */
    .team {
      padding: 80px 20px;
      background: var(--light);
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .team-member {
      text-align: center;
      padding: 20px;
      border-radius: var(--border-radius);
      transition: all 0.3s ease;
    }

    .team-photo {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: var(--dark-lighter);
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      color: var(--text-muted);
    }

    .team-name {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 8px;
    }

    .team-role {
      font-size: 1rem;
      color: var(--text-muted);
      font-style: italic;
    }

    .case-content {
      display: flex;
      flex-direction: column; /* Stack on small screens */
      gap: 60px; /* Increased gap between columns/rows */
      align-items: flex-start;
      padding: 60px 20px; /* Adjusted padding */
      max-width: 1200px;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .case-content {
        flex-direction: row; /* Two columns on larger screens */
        justify-content: space-between;
      }
    }

    .case-text {
      flex: 1;
      padding-right: 60px; /* Increased space between text and image */
    }

    .case-text h2 {
      font-size: 2.2rem; /* Larger font size */
      font-weight: 700;
      margin-bottom: 20px;
      color: var(--primary);
      position: relative;
      padding-bottom: 10px;
    }

    .case-text h2::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 50px; /* Short underline */
      height: 3px;
      background-color: var(--primary);
      border-radius: 2px;
    }

    .case-text p {
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 25px;
      color: var(--text-muted);
    }

    .case-text ul {
      list-style: none; /* Remove default bullet */
      margin-left: 0;
      margin-bottom: 25px;
      padding-left: 0;
    }

    .case-text li {
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--text-muted);
      margin-bottom: 15px;
      position: relative;
      padding-left: 30px; /* Space for custom bullet */
    }

    .case-text li::before {
      content: '\2022'; /* Unicode for bullet point */
      color: var(--primary);
      font-size: 1.5rem;
      position: absolute;
      left: 0;
      top: 0;
      line-height: 1.8;
    }

    .case-screenshot {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .case-screenshot img {
      max-width: 100%;
      height: auto;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow);
    }

    /* Modal Styles */
    .modal-overlay {
      display: none; /* Hidden by default */
      position: fixed; /* Stay in place */
      z-index: 1001; /* Sit on top */
      left: 0;
      top: 0;
      width: 100%; /* Full width */
      height: 100%; /* Full height */
      overflow: auto; /* Enable scroll if needed */
      background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
      backdrop-filter: blur(8px); /* Blur effect */
      -webkit-backdrop-filter: blur(8px); /* Safari support */
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    .modal-content {
      background-color: #fefefe;
      margin: auto;
      padding: 40px;
      border-radius: var(--border-radius);
      max-width: 900px;
      width: 100%;
      position: relative;
      box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
      animation-name: animatemodal;
      animation-duration: 0.4s;
      overflow-y: auto; /* Enable scrolling for modal content */
      max-height: 90vh; /* Limit height to viewport height */
      color: var(--text); /* Use main text color */
    }

    .close-button {
      color: var(--text-muted);
      font-size: 35px;
      font-weight: bold;
      position: absolute;
      top: 10px;
      right: 20px;
      cursor: pointer;
      transition: 0.3s;
    }

    .close-button:hover,
    .close-button:focus {
      color: var(--primary);
      text-decoration: none;
      cursor: pointer;
    }

    /* Animation for modal */
    @keyframes animatemodal {
      from {top: -300px; opacity: 0}
      to {top: 0; opacity: 1}
    }

    /* Blur background when modal is active */
    body.modal-active > *:not(.modal-overlay) {
      filter: blur(5px);
      pointer-events: none; /* Disable interaction with blurred content */
    }

    /* Cookie Consent Banner */
    .cookie-consent-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #f8f9fa;
      border-top: 2px solid #10b981;
      padding: 20px;
      box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
      z-index: 10000;
      transform: translateY(100%);
      transition: transform 0.3s ease;
      font-size: 14px;
      display: none;
    }

    .cookie-consent-banner.show {
      transform: translateY(0);
    }

    .cookie-consent-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .cookie-consent-text {
      flex: 1;
      min-width: 300px;
    }

    .cookie-consent-text p {
      margin: 0 0 10px 0;
      color: #333333;
      line-height: 1.5;
    }

    .cookie-consent-text a {
      color: #10b981;
      text-decoration: none;
      font-weight: 500;
    }

    .cookie-consent-text a:hover {
      text-decoration: underline;
    }

    .cookie-consent-buttons {
      display: flex;
      gap: 12px;
      flex-shrink: 0;
    }

    .cookie-btn {
      padding: 10px 20px;
      border: none;
      border-radius: 6px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 14px;
    }

    .cookie-btn-accept {
      background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
      color: white;
    }

    .cookie-btn-accept:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .cookie-btn-decline {
      background: transparent;
      color: #555555;
      border: 1px solid #555555;
    }

    .cookie-btn-decline:hover {
      background: #555555;
      color: white;
    }

    @media (max-width: 768px) {
      .cookie-consent-content {
        flex-direction: column;
        text-align: center;
      }

      .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
      }

      .cookie-consent-banner {
        padding: 15px;
      }
    }

/* Image Modal */
.image-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.image-modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.modal-content:hover {
  transform: scale(1.02);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1);
}

/* Mobile adaptations */
@media (max-width: 768px) {
  .close-modal {
    top: 15px;
    right: 15px;
    font-size: 30px;
    width: 40px;
    height: 40px;
  }

  .modal-content {
    max-width: 100%;
    max-height: 100%;
  }
}
