/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --primary-color: #2d2a6b;
    --secondary-color: #6159c9;
    --text-dark: #333;
    --text-light: #fff;
    --bg-light: #fff;
    --bg-dark: #f8f8f8;
    --accent-color: #ff4500;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  h1, h2, h3 {
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  h1 {
    font-size: 2.5rem;
    font-weight: 700;
  }
  
  h2 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
  }
  
  h3 {
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  p {
    margin-bottom: 15px;
  }
  
  ul {
    list-style: none;
  }
  
  section {
    padding: 80px 0;
  }
  
  /* Button Styles */
  .btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: 20px;
    
    &:hover {
      background-color: var(--secondary-color);
    }
  }
  
  .btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    
    &:hover {
      background-color: var(--secondary-color);
    }
  }
  
  /* Cookie Consent */
  .cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--bg-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    
    &.show {
      display: block;
    }
    
    .cookie-content {
      padding: 25px;
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
      
      h2 {
        margin-bottom: 15px;
      }
      
      p {
        margin-bottom: 25px;
        font-size: 0.9rem;
      }
      
      .cookie-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        
        button {
          padding: 10px 20px;
          border: none;
          border-radius: 4px;
          font-weight: 600;
          cursor: pointer;
          transition: background-color 0.3s ease;
        }
        
        .btn-reject {
          background-color: #eee;
          color: var(--text-dark);
          
          &:hover {
            background-color: #ddd;
          }
        }
        
        .btn-accept {
          background-color: var(--primary-color);
          color: var(--text-light);
          
          &:hover {
            background-color: var(--secondary-color);
          }
        }
      }
    }
  }
  
  /* Header */
  header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      
      .logo {
        font-size: 1.5rem;
        font-weight: 700;
      }
      
      .nav-menu {
        display: flex;
        gap: 20px;
        
        li {
          a {
            &:hover {
              text-decoration: underline;
            }
          }
        }
      }
      
      .menu-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        
        span {
          display: block;
          width: 25px;
          height: 3px;
          background-color: var(--text-light);
          border-radius: 3px;
          transition: all 0.3s ease;
        }
        
        &.active {
          span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
          }
          
          span:nth-child(2) {
            opacity: 0;
          }
          
          span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
          }
        }
      }
    }
  }
  
  /* Hero Section */
  .hero {
    background-color: var(--primary-color);
    background-image: url('./assets/hero-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--text-light);
    padding: 100px 0;
    
    .hero-content {
      max-width: 800px;
      
      h1 {
        margin-bottom: 30px;
      }
    }
  }
  
  /* Allies Section */
  .allies {
    background-color: var(--bg-light);
    
    .allies-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
      
      .allies-image {
        img {
          border-radius: 8px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
      }
      
      .allies-text {
        h2 {
          text-align: left;
        }
      }
    }
  }
  
  /* Services Section */
  .services {
    background-color: var(--bg-dark);
    
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 50px;
      
      .service-card {
        background-color: var(--bg-light);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        
        &:hover {
          transform: translateY(-10px);
        }
        
        .service-image {
          height: 180px;
          overflow: hidden;
          
          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
        }
        
        h3 {
          padding: 20px 20px 10px;
        }
        
        p {
          padding: 0 20px;
          font-size: 0.9rem;
        }
        
        .service-result {
          padding: 10px 20px 20px;
          color: var(--primary-color);
          font-weight: 500;
          font-size: 0.9rem;
        }
      }
    }
  }
  
  /* Results Section */
  .results {
    background-color: var(--bg-light);
    
    .results-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
      
      .results-text {
        h2 {
          text-align: left;
        }
        
        .value-list {
          margin-top: 30px;
          
          li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 15px;
            
            &:before {
              content: '✓';
              color: var(--primary-color);
              position: absolute;
              left: 0;
              font-weight: 600;
            }
          }
        }
      }
      
      .results-image {
        img {
          border-radius: 8px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
      }
    }
  }
  
  /* FAQ Section */
  .faq {
    background-color: var(--bg-dark);
    
    .faq-list {
      max-width: 800px;
      margin: 50px auto 0;
      
      .faq-item {
        background-color: var(--bg-light);
        margin-bottom: 20px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        
        h3 {
          padding: 20px;
          background-color: var(--primary-color);
          color: var(--text-light);
          margin-bottom: 0;
          font-size: 1rem;
        }
        
        p {
          padding: 20px;
          margin-bottom: 0;
        }
      }
    }
  }
  
  /* Contact Section */
  .contact {
    background-color: var(--bg-light);
    
    .contact-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 50px;
      align-items: center;
      margin-top: 50px;
      
      .contact-image {
        img {
          border-radius: 8px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
      }
      
      .contact-form {
        .form-group {
          margin-bottom: 20px;
          
          label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
          }
          
          input, textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Poppins', sans-serif;
            
            &:focus {
              outline: none;
              border-color: var(--primary-color);
            }
          }
          
          textarea {
            min-height: 150px;
            resize: vertical;
          }
        }
      }
    }
    
    .contact-info {
      margin-top: 50px;
      text-align: center;
      
      p {
        margin-bottom: 10px;
      }
    }
  }
  
  /* Footer */
  footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 50px 0 20px;
    
    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
      
      .footer-logo {
        font-size: 1.5rem;
        font-weight: 700;
      }
      
      .footer-links {
        display: flex;
        gap: 20px;
        
        a {
          &:hover {
            text-decoration: underline;
          }
        }
      }
    }
    
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      
      .social-links {
        display: flex;
        gap: 15px;
        
        a {
          display: flex;
          justify-content: center;
          align-items: center;
          width: 36px;
          height: 36px;
          background-color: rgba(255, 255, 255, 0.1);
          border-radius: 50%;
          transition: background-color 0.3s ease;
          
          &:hover {
            background-color: rgba(255, 255, 255, 0.2);
          }
        }
      }
    }
  }
  
  /* Thank you page */
  .thank-you {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

  }

  .main-section, .main-section h2 {
    text-align: left;
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    section {
      padding: 60px 0;
    }
    
    h1 {
      font-size: 2rem;
    }
    
    h2 {
      font-size: 1.8rem;
    }
  }
  
  @media (max-width: 768px) {
    header {
      nav {
        .menu-toggle {
          display: flex;
        }
        
        .nav-menu {
          position: fixed;
          top: 80px;
          left: 0;
          right: 0;
          background-color: var(--primary-color);
          flex-direction: column;
          padding: 20px;
          gap: 15px;
          transform: translateY(-150%);
          transition: transform 0.3s ease;
          
          &.active {
            transform: translateY(0);
          }
        }
      }
    }
    
    .allies {
      .allies-content {
        grid-template-columns: 1fr;
        
        .allies-image {
          order: 2;
        }
        
        .allies-text {
          order: 1;
        }
      }
    }
    
    .results {
      .results-content {
        grid-template-columns: 1fr;
        
        .results-image {
          order: 2;
        }
        
        .results-text {
          order: 1;
        }
      }
    }
    
    .contact {
      .contact-content {
        grid-template-columns: 1fr;
        
        .contact-image {
          display: none;
        }
      }
    }
    
    footer {
      .footer-top, .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
      }
    }
  }
  
  @media (max-width: 480px) {
    h1 {
      font-size: 1.7rem;
    }
    
    h2 {
      font-size: 1.5rem;
    }
    
    h3 {
      font-size: 1.1rem;
    }
    
    .cookie-consent {
      .cookie-content {
        .cookie-buttons {
          flex-direction: column;
          gap: 10px;
        }
      }
    }
    
    .hero {
      padding: 70px 0;
    }
    
    .services {
      .services-grid {
        grid-template-columns: 1fr;
      }
    }
    
    .contact-form {
      .form-group {
        label {
          font-size: 0.9rem;
        }
      }
    }
  }