/* Base styles and reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --color-dark: #0F0F13;
    --color-darker: #09090C;
    --color-light: #FFFFFF;
    --color-gray: #F5F5F7;
    --font-primary: 'Manrope', sans-serif;
    --container-width: 1200px;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-light);
    background-color: var(--color-light);
    overflow-x: hidden;
  }
  
  .container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  button {
    cursor: pointer;
    font-family: var(--font-primary);
  }
  
  /* Header */
  .header {
    background-color: var(--color-light);
    color: var(--color-dark);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-weight: 700;
    font-size: 1.25rem;
  }
  
  .main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
  }
  
  .main-nav a {
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  
  .main-nav a:hover {
    color: #555;
  }
  
  /* Hero Section */
  .hero {
    background-color: var(--color-light);
    color: var(--color-dark);
    padding: 60px 0;
  }
  
  .hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .hero-content {
    max-width: 950px;
    margin-bottom: 40px;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-image {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    overflow: hidden;
  }
  
  /* Team Section */
  .team-section {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 80px 0;
    text-align: center;
  }
  
  .team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  .team-description {
    max-width: 800px;
    margin: 0 auto 50px;
  }
  
  .team-description p {
    margin-bottom: 20px;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .team-member {
    background-color: #1A1A20;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
  }
  
  .member-photo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #2A2A30;
  }
  
  .member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .team-member h3 {
    margin-bottom: 5px;
    font-size: 1rem;
  }
  
  .team-member p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
  }
  
  /* Stats Section */
  .stats-section {
    background-color: var(--color-light);
    color: var(--color-dark);
    padding: 80px 0;
  }
  
  .stats-header {
    margin-bottom: 30px;
  }
  
  .stats-header h2 {
    font-size: 1.75rem;
    margin-bottom: 10px;
  }
  
  .stats-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
  }
  
  .stats-description {
    margin-bottom: 50px;
    max-width: 800px;
  }
  
  .stats-description p {
    margin-bottom: 20px;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .stat-item {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 40px 30px;
    border-radius: 8px;
  }
  
  .stat-item h3 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .stat-item p {
    font-size: 0.9rem;
    opacity: 0.9;
  }
  
  /* Testimonials Section */
  .testimonials-section {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 80px 0;
    text-align: center;
  }
  
  .testimonials-section h2 {
    font-size: 1rem;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 15px;
  }
  
  .testimonials-section h3 {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 0 auto;
  }
  
  .testimonial {
    background-color: #1A1A20;
    padding: 30px;
    border-radius: 8px;
    text-align: left;
  }
  
  .stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
  }
  
  .testimonial p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.7;
  }
  
  .client h4 {
    font-size: 1rem;
    margin-bottom: 5px;
  }
  
  .client p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 0;
  }
  
  /* Contact Form */
  .contact-section {
    background-color: var(--color-darker);
    padding: 80px 0;
  }
  
  form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  input, textarea {
    width: 100%;
    padding: 15px;
    background-color: #1A1A20;
    border: none;
    border-radius: 8px;
    color: var(--color-light);
    font-family: var(--font-primary);
    font-size: 0.9rem;
  }
  
  textarea {
    resize: vertical;
    min-height: 150px;
  }
  
  input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }
  
  .btn-submit {
    background-color: var(--color-light);
    color: var(--color-dark);
    border: none;
    border-radius: 8px;
    padding: 15px 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: center;
    transition: background-color 0.3s;
    min-width: 180px;
  }
  
  .btn-submit:hover {
    background-color: #f0f0f0;
  }
  
  /* Footer */
  .footer {
    padding: 60px 0 30px;
    color: #000;
    text-align: center;
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s;
  }
  
  .social-links a:hover {
    opacity: 1;
  }
  
  .footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
  }
  
  .footer-links a {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #000;
    transition: opacity 0.3s;
  }
  
  .footer-links a:hover {
    opacity: 1;
  }
  
  .copyright {
    font-size: 0.85rem;
    opacity: 0.6;
  }
  
  /* Cookie Popup */
  .cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background-color: var(--color-dark);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .cookie-popup.show {
    display: block;
  }
  
  .cookie-content p {
    margin-bottom: 20px;
    font-size: 0.9rem;
  }
  
  .cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
  }
  
  .cookie-buttons button {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
  }
  
  #acceptCookies {
    background-color: var(--color-light);
    color: var(--color-dark);
  }
  
  #declineCookies {
    background-color: transparent;
    color: var(--color-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  #acceptCookies:hover {
    background-color: #f0f0f0;
  }
  
  #declineCookies:hover {
    border-color: rgba(255, 255, 255, 0.5);
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .hero h1 {
      font-size: 2.8rem;
    }
    
    .testimonials-section h3,
    .stats-header h3 {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.2rem;
    }
    
    .hero-content {
      margin-bottom: 30px;
    }
    
    .team-grid,
    .stats-grid,
    .testimonials-grid {
      grid-template-columns: 1fr;
    }
    
    .team-section,
    .stats-section,
    .testimonials-section {
      padding: 60px 0;
    }
    
    .stats-header h3,
    .testimonials-section h3 {
      font-size: 1.8rem;
    }
  }
  
  @media (max-width: 576px) {
    .header .container {
      flex-direction: column;
      gap: 15px;
    }
    
    .main-nav ul {
      gap: 20px;
    }
    
    .hero h1 {
      font-size: 1.8rem;
    }
    
    .cookie-buttons {
      flex-direction: column;
    }
    
    .team-section h2,
    .stats-header h3,
    .testimonials-section h3 {
      font-size: 1.5rem;
    }
  }

html {
    scroll-behavior: smooth;
}

.main-section {
    color: var(--color-dark);
    padding: 60px 0;
}

.main-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}