/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #111827;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #6B46C1 0%, #1E3A8A 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #FFFFFF;
    text-decoration: none;
    background: linear-gradient(135deg, #F59E0B 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F59E0B;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #C4B5FD;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.9) 0%, rgba(30, 58, 138, 0.9) 50%, rgba(76, 29, 149, 0.9) 100%),
                url('./img/qECJBs.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.btn:hover {
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #6B46C1;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    border-radius: 2px;
}

/* About Section */
.about {
    background: linear-gradient(180deg, rgba(196, 181, 253, 0.1) 0%, rgba(107, 70, 193, 0.2) 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Services Section */
.services {
    background: #FFFFFF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #6B46C1 0%, #F59E0B 100%);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.service-card:nth-child(2) {
    animation-delay: 0.3s;
}

.service-card:nth-child(3) {
    animation-delay: 0.6s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(107, 70, 193, 0.2);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.8rem;
    color: #6B46C1;
    margin-bottom: 1rem;
}

.service-card p {
    color: #4B5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Benefits Section */
.benefits {
    background: linear-gradient(180deg, rgba(196, 181, 253, 0.1) 0%, rgba(107, 70, 193, 0.2) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: scale(1.05);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #F59E0B;
}

.benefit-item h4 {
    font-size: 1.3rem;
    color: #6B46C1;
    margin-bottom: 1rem;
}

/* How It Works Section */
.how-it-works {
    background: #FFFFFF;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6B46C1 0%, #F59E0B 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.step h4 {
    font-size: 1.3rem;
    color: #6B46C1;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(180deg, rgba(196, 181, 253, 0.1) 0%, rgba(107, 70, 193, 0.2) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: #C4B5FD;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.stars {
    color: #F59E0B;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #4B5563;
}

.testimonial-author {
    font-weight: bold;
    color: #6B46C1;
}

/* FAQ Section */
.faq {
    background: #FFFFFF;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 1rem;
    background: #F3F4F6;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: bold;
    color: #6B46C1;
    list-style: none;
    position: relative;
    transition: background 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
    color: #F59E0B;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-item summary:hover {
    background: #E5E7EB;
}

.faq-item p {
    padding: 0 1.5rem 1.5rem;
    color: #4B5563;
    line-height: 1.7;
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    padding: 5rem 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #6B46C1;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #6B46C1;
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.form-group select option {
    color: black;
    background-color: white;
}

.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #4B5563;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group a {
    color: #6B46C1;
    text-decoration: underline;
}

/* Contact Section */
.contact {
    background: #FFFFFF;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-box {
    padding: 2.5rem;
    background: linear-gradient(180deg, rgba(196, 181, 253, 0.1) 0%, rgba(107, 70, 193, 0.2) 100%);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-box h3 {
    font-size: 1.8rem;
    color: #6B46C1;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(107, 70, 193, 0.2);
}

.contact-detail-item:last-child {
    border-bottom: none;
}

.contact-detail-item h4 {
    font-size: 1.2rem;
    color: #6B46C1;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-detail-item p {
    color: #4B5563;
    line-height: 1.7;
    margin: 0;
}

.contact-detail-item a {
    color: #6B46C1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-item a:hover {
    color: #4C1D95;
    text-decoration: underline;
}

.contact-map {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1E3A8A 0%, #4C1D95 100%);
    color: #FFFFFF;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #F59E0B 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #C4B5FD;
}

.footer-description {
    line-height: 1.7;
    opacity: 0.9;
}

.footer-contact {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.footer-contact a {
    color: #C4B5FD;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #FFFFFF;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #C4B5FD;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #6B46C1 0%, #1E3A8A 100%);
    color: #FFFFFF;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #F59E0B;
    text-decoration: underline;
}

.cookie-btn {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
    transform: translateY(-2px);
}

/* Policy Pages */
.policy-page {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(196, 181, 253, 0.1) 0%, rgba(107, 70, 193, 0.2) 100%);
    min-height: 70vh;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
    border: 2px solid #C4B5FD;
}

.policy-title {
    font-size: 2.5rem;
    color: #6B46C1;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.policy-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    border-radius: 2px;
}

.policy-content h2 {
    font-size: 1.8rem;
    color: #6B46C1;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content h3 {
    font-size: 1.4rem;
    color: #4C1D95;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #4B5563;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #4B5563;
}

.policy-contact {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(196, 181, 253, 0.1) 0%, rgba(107, 70, 193, 0.2) 100%);
    border-radius: 8px;
}

.policy-contact h3 {
    color: #6B46C1;
    margin-bottom: 1rem;
}

.policy-contact p {
    margin-bottom: 0.5rem;
}

.policy-contact a {
    color: #6B46C1;
    text-decoration: none;
}

.policy-contact a:hover {
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #6B46C1 0%, #4C1D95 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: linear-gradient(135deg, #4C1D95 0%, #6B46C1 100%);
    transform: translateY(-2px);
}

/* Simple Pages (About, Blog, Tips) */
.simple-page {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(196, 181, 253, 0.1) 0%, rgba(107, 70, 193, 0.2) 100%);
    min-height: 70vh;
}

.simple-container {
    max-width: 800px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
}

.simple-title {
    font-size: 2.5rem;
    color: #6B46C1;
    margin-bottom: 2rem;
    text-align: center;
}

.simple-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4B5563;
}

.simple-content p {
    margin-bottom: 1.5rem;
}

/* Thank You Page */
.thank-you {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 0;
}

.thank-you-content {
    max-width: 600px;
    padding: 3rem;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
}

.thank-you h1 {
    font-size: 2.5rem;
    color: #6B46C1;
    margin-bottom: 1.5rem;
}

.thank-you p {
    font-size: 1.2rem;
    color: #4B5563;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #6B46C1 0%, #1E3A8A 100%);
        flex-direction: column;
        padding: 1rem;
        display: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .menu-toggle:checked ~ .nav {
        display: flex;
    }

    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .services-grid,
    .benefits-grid,
    .steps,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-map {
        height: 350px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .form-container,
    .policy-container,
    .simple-container {
        padding: 2rem 1.5rem;
    }

    .policy-title,
    .simple-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

