/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #FF8C42, #FF6B1A);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 26, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #6C2BD9;
    border: 2px solid #6C2BD9;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #6C2BD9;
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: center;
}

.cookie-icon {
    margin-bottom: 20px;
}

.cookie-icon img {
    width: 60px;
    height: 60px;
}

.cookie-content h3 {
    color: #6C2BD9;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cookie-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-buttons .btn-primary {
    margin-bottom: 5px;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 35px;
    height: 35px;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #6C2BD9;
    text-decoration: unset;
}

.nav-links {
    display: flex;
    row-gap: 10px;
    column-gap: 30px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #6C2BD9;
}

.nav-auth {
    display: flex;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #6C2BD9;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6C2BD9, #8B5CF6);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
   
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btn {
    font-size: 18px;
    padding: 18px 40px;
}

.hero-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* About Section */
.about {
    padding: 60px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #6C2BD9;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.about-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #6C2BD9;
    margin: 40px 0 25px 0;
}

.principles {
    margin-bottom: 40px;
}

.principle {
    margin-bottom: 20px;
}

.principle h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.principle p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

/* Services Section */
.services {
    padding: 60px 0;
    background: white;
}

.services h2 {
    font-size: 36px;
    font-weight: 700;
    color: #6C2BD9;
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin: 25px 25px 15px 25px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0 25px 25px 25px;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    background: #f8f9fa;
    position: relative;
}

.faq h2 {
    font-size: 36px;
    font-weight: 700;
    color: #6C2BD9;
    text-align: center;
    margin-bottom: 60px;
}

.faq-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-item:first-child {
    background: linear-gradient(135deg, #6C2BD9, #8B5CF6);
    color: white;
}

.faq-item:nth-child(2) {
    background: linear-gradient(135deg, #FF6B1A, #FF8C42);
    color: white;
}

.faq-item:nth-child(3) {
    background: linear-gradient(135deg, #FFA500, #FFB347);
    color: white;
}

.faq-item:nth-child(4) {
    background: linear-gradient(135deg, #32CD32, #90EE90);
    color: white;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

.faq-image {
  width: 100%;
  height: 100%;
}

.faq-image img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background: white;
}

.testimonials h2 {
    font-size: 36px;
    font-weight: 700;
    color: #6C2BD9;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.testimonial-content {
    flex: 1;
}

.quote {
    font-size: 48px;
    color: #6C2BD9;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 14px;
    color: #6C2BD9;
    font-weight: 600;
}

.testimonial-image {
    flex-shrink: 0;
}

.testimonial-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: linear-gradient(135deg, #6C2BD9, #8B5CF6);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-details p {
    font-size: 16px;
    margin-bottom: 0;
    opacity: 1;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6C2BD9;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-submit {
    width: 100%;
    font-size: 18px;
    padding: 18px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand .brand-name {
    color: white;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
}

/* Thank You Page */
.thank-you {
    padding: 60px 0;
    background: linear-gradient(135deg, #6C2BD9, #8B5CF6);
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thank-you .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.thank-you-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.thank-you-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

.thank-you-text {
    margin-bottom: 40px;
}

.thank-you-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    
    .hero-content,
    .about-content,
    .contact-content,
    .thank-you .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .faq-content {
      grid-template-columns: 1fr;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .about,
    .services,
    .faq,
    .testimonials,
    .contact {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .thank-you-content h1 {
        font-size: 32px;
    }
    
    .thank-you-text p {
        font-size: 16px;
    }
}

textarea {
  resize: none;
}

 @media (max-width: 768px) {
        .nav-links {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: white;
            flex-direction: column;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }
        
        .nav-links.active {
            transform: translateX(0);
            display: flex;
        }
        
        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-6px, 6px);
        }
        
        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(45deg) translate(-6px, -6px);
        }
    }

    .policy {
      padding-top: 60px;
      padding-bottom: 60px;
    }

    .policy li {
      list-style-position: inside;
    }

    .policy h1 {
      color: rgba(50, 0, 157, 1);
      margin-bottom: 20px;
      font-weight: 800;
      font-size: 40px;
    }

    .policy-content {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }