/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1b3e;
    overflow-x: hidden;
}

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

/* Buttons */
.btn-primary {
    background: #76ff03;
    color: #1a1b3e;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #64dd17;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #1a1b3e;
    border: 2px solid #1a1b3e;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1a1b3e;
    color: #ffffff;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    color: #1a1b3e;
    padding: 24px;
    border-radius: 16px;
    max-width: 320px;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cookie-consent.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(-100%);
}

.cookie-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.cookie-consent h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.cookie-consent p {
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

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

.cookie-buttons button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

/* Header */
.header {
    background: #1a1b3e;
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: #76ff03;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

.nav-list a:hover {
    color: #76ff03;
}

.burger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 20px;
    justify-content: space-between;
}

.burger-btn span {
    width: 100%;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #76ff03 0%, #64dd17 100%);
    color: #1a1b3e;
    padding: 120px 0 80px;
    border-radius: 0 0 40px 40px;
    margin-top: 80px;
}

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

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

.hero-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.8;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
}

.advantages h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: left;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.advantage-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #76ff03;
}

.advantage-item p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #151640;
}

.services h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: left;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.service-card {
    background: #ffffff;
    color: #1a1b3e;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
}

.testimonials h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.testimonial-card {
    background: #151640;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: left;
}

.testimonial-rating {
    margin-bottom: 16px;
    font-size: 16px;
}

.testimonial-card blockquote {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
}

.testimonial-card strong {
    color: #76ff03;
    font-weight: 600;
}

.testimonial-card span {
    display: block;
    font-size: 14px;
    opacity: 0.7;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #151640;
}

.faq h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #ffffff;
    padding: 24px 0;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 24px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #76ff03 0%, #64dd17 100%);
    color: #1a1b3e;
    padding: 80px 0;
    border-radius: 40px 40px 0 0;
}

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

.contact-text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.contact-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.8;
}

.contact-info p {
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1a1b3e;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

.contact-image {
    display: none;
}

/* Footer */
.footer {
    background: #1a1b3e;
    padding: 40px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo h3 {
    color: #76ff03;
    font-size: 20px;
    font-weight: 700;
}

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

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

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
}

/* Thank You Page */
.thank-you {
    background: linear-gradient(135deg, #76ff03 0%, #64dd17 100%);
    color: #1a1b3e;
    padding: 120px 0 80px;
    margin-top: 80px;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.thank-you-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.thank-you-text h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
}

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

.thank-you-message p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.contact-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 12px;
    margin-top: 24px;
}

.contact-details p {
    margin-bottom: 12px;
}

.contact-details p:first-child {
    font-weight: 600;
    margin-bottom: 16px;
}

.thank-you-actions {
    margin-top: 32px;
}

.thank-you-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.thank-you-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 16px;
}

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

@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background: #1a1b3e;
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .thank-you {
        padding: 100px 0 60px;
    }
    
    .thank-you-text h1 {
        font-size: 28px;
    }
    
    .advantages,
    .services,
    .testimonials,
    .faq,
    .contact {
        padding: 60px 0;
    }
    
    .advantages h2,
    .services h2,
    .testimonials h2,
    .faq h2,
    .contact-text h2 {
        font-size: 28px;
    }
    
    .cookie-consent {
        position: fixed;
        left: 10px;
        right: 10px;
        top: auto;
        bottom: 20px;
        transform: none;
        max-width: none;
    }
    
    .cookie-consent.hidden {
        transform: translateY(100%);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .advantages h2,
    .services h2,
    .testimonials h2,
    .faq h2,
    .contact-text h2 {
        font-size: 24px;
    }
    
    .btn-primary {
        padding: 14px 24px;
        font-size: 14px;
    }
}
.text {
    padding-block: 100px;

}
.text h1{
    color: #fff;
font-family: Inter;
font-size: 60px;
font-style: normal;
font-weight: 700;
line-height: normal;
margin-bottom: 30px;
}
.text p {
    color: #fff;
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
}