/* Base Styles */
:root {
    --dark-graphite: #1C1C1E;
    --neon-turquoise: #00F5D4;
    --purple: #C738BD;
    --beige: #F5F5DC;
    --orange: #FF6F3C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--dark-graphite);
    color: var(--beige);
    line-height: 1.6;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

a {
    color: var(--neon-turquoise);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--purple);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: var(--orange);
    color: var(--dark-graphite);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background-color: var(--neon-turquoise);
    color: var(--dark-graphite);
    transform: translateY(-2px);
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    background-color: rgba(28, 28, 30, 0.95);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--neon-turquoise);
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    color: var(--beige);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--neon-turquoise);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: calc(100vh - 80px);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(28, 28, 30, 0.7), rgba(28, 28, 30, 0.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--beige);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: rgba(0, 245, 212, 0.05);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: var(--beige);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--neon-turquoise);
    margin: 20px auto 0;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background-color: rgba(245, 245, 220, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-img {
    height: 50%;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--neon-turquoise);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: rgba(199, 56, 189, 0.05);
}

/* Steps Section */
.steps {
    padding: 80px 0;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: rgba(0, 245, 212, 0.05);
}

.testimonial-card {
    text-align: center;
    padding: 30px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--neon-turquoise);
    opacity: 0.3;
    position: absolute;
}

.testimonial-text::before {
    top: -20px;
    left: -10px;
}

.testimonial-text::after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    font-weight: bold;
    color: var(--neon-turquoise);
}

/* Form Section */
.form-section {
    padding: 80px 0;
}

.form-container {
    background-color: rgba(245, 245, 220, 0.05);
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-input,
.form-select {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(0, 245, 212, 0.3);
    border-radius: 5px;
    background-color: rgba(28, 28, 30, 0.8);
    color: var(--beige);
}

.form-select option {
    background-color: white;
    color: var(--dark-graphite);
}

.form-checkbox {
    margin-right: 10px;
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
}

.form-checkbox-label input {
    margin-top: 5px;
}

.form-checkbox-text {
    margin-left: 10px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: rgba(199, 56, 189, 0.05);
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    display: none;
}

.faq-label {
    display: block;
    padding: 15px;
    background-color: rgba(245, 245, 220, 0.05);
    color: var(--neon-turquoise);
    font-weight: bold;
    cursor: pointer;
    position: relative;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.faq-label::after {
    content: '+';
    position: absolute;
    right: 15px;
    transition: transform 0.3s ease;
}

.faq-question:checked + .faq-label {
    background-color: rgba(0, 245, 212, 0.1);
}

.faq-question:checked + .faq-label::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(28, 28, 30, 0.5);
    border-radius: 0 0 5px 5px;
}

.faq-question:checked ~ .faq-answer {
    max-height: 500px;
    padding: 15px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    text-align: center;
    background-color: rgba(255, 111, 60, 0.1);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

/* Footer */
footer {
    background-color: rgba(28, 28, 30, 0.95);
    padding: 50px 0 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-title {
    color: var(--neon-turquoise);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--neon-turquoise);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: var(--neon-turquoise);
    min-width: 20px;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(245, 245, 220, 0.1);
}

/* Thank You Page */
.thank-you {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.thank-you-container {
    background-color: rgba(245, 245, 220, 0.05);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 600px;
    margin: 8rem auto 5rem;
    border: 2px solid var(--neon-turquoise);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(28, 28, 30, 0.95);
    color: var(--beige);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid var(--neon-turquoise);
    transform: translateY(150%);
    transition: transform 0.5s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-text {
    flex: 1;
    margin-right: 20px;
}

.cookie-btn {
    white-space: nowrap;
}

/* Policy Pages */
.policy-page {
    padding: 100px 0;
}

.policy-container {
    background-color: rgba(245, 245, 220, 0.05);
    padding: 40px;
    border-radius: 10px;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--neon-turquoise);
}

.policy-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--neon-turquoise);
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h2 {
    color: var(--neon-turquoise);
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .nav-toggle-label {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 30px;
        height: 21px;
    }
    
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background-color: var(--beige);
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .nav-toggle-label span {
        top: 9px;
    }
    
    .nav-toggle-label span::before {
        content: '';
        top: -8px;
    }
    
    .nav-toggle-label span::after {
        content: '';
        bottom: -8px;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(28, 28, 30, 0.95);
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-toggle:checked ~ .nav-menu {
        max-height: 100vh;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero {
        height: 80vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cookie-popup {
        flex-direction: column;
    }
    
    .cookie-text {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .form-container,
    .policy-container {
        padding: 20px;
    }
}
