/* 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: Arial, sans-serif;
    line-height: 1.6;
    color: #1E1B4B;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    color: #6B46C1;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.6;
    margin-bottom: 1rem;
}

a {
    color: #6B46C1;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #F59E0B;
}

/* Header */
.main-header {
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(107, 70, 193, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: bold;
    background: linear-gradient(135deg, #6B46C1 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background: #6B46C1;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background: #E9D5FF;
    color: #6B46C1;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('./img/SZdwWZ.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.8) 0%, rgba(30, 27, 75, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-title {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    color: #E9D5FF;
}

.btn-cta {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #FFFFFF;
    font-weight: bold;
    font-size: clamp(1rem, 2vw, 1.25rem);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-dark {
    background: #1E1B4B;
    color: #FFFFFF;
}

.section-dark .section-title {
    color: #FFFFFF;
}

.section-dark .service-card {
    background: #FFFFFF;
}

.section-dark .service-card h3,
.section-dark .service-card p {
    color: #1E1B4B;
}

.section-light {
    background: #E9D5FF;
}

.section-gradient {
    background: linear-gradient(135deg, #6B46C1 0%, #F59E0B 100%);
    color: #FFFFFF;
}

.section-gradient .section-title {
    color: #FFFFFF;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
    transition: all 0.3s ease;
    border: 2px solid #E9D5FF;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #6B46C1;
    margin-bottom: 1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: #E9D5FF;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #6B46C1;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.3);
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    color: #1E1B4B;
    margin-bottom: 1rem;
}

.service-content p {
    color: #1E1B4B;
    flex-grow: 1;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #F59E0B;
    margin: 1rem 0;
}

.btn-service {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: auto;
}

.btn-service:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4);
    color: #FFFFFF;
}

/* Steps */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    text-align: center;
    padding: 2rem;
}

.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: 2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-item h3 {
    color: #6B46C1;
    margin-bottom: 1rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
    transition: all 0.3s ease;
    border: 2px solid #E9D5FF;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #6B46C1;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
    border: 2px solid #E9D5FF;
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #1E1B4B;
}

.testimonial-author {
    font-weight: bold;
    color: #6B46C1;
}

.testimonial-date {
    font-size: 0.875rem;
    color: #8B7FA8;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    border: 2px solid #6B46C1;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #F59E0B;
}

.faq-item[open] {
    border-color: #F59E0B;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.2);
}

.faq-question {
    padding: 1.5rem;
    background: #FFFFFF;
    cursor: pointer;
    font-weight: bold;
    color: #6B46C1;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #F59E0B;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 1.5rem;
    background: #E9D5FF;
    color: #1E1B4B;
}

/* Form */
.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.order-form {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #6B46C1;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #6B46C1;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #F59E0B;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-group select option {
    color: black;
    background-color: white;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
    cursor: pointer;
    accent-color: #6B46C1;
}

.checkbox-label a {
    color: #6B46C1;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #F59E0B;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.btn-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    align-items: start;
}

.contact-map {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #6B46C1;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-card {
    background: #E9D5FF;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #6B46C1;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.contact-item h3 {
    color: #6B46C1;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #6B46C1;
    font-weight: bold;
}

.contact-item a:hover {
    color: #F59E0B;
}

/* Footer */
.main-footer {
    background: #1E1B4B;
    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-section h3 {
    color: #F59E0B;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #E9D5FF;
}

.footer-section a:hover {
    color: #F59E0B;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(233, 213, 255, 0.2);
    color: #8B7FA8;
}

/* Cookie Popup */
.cookie-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #6B46C1 0%, #F59E0B 100%);
    color: #FFFFFF;
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    animation: slideUp 0.5s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-content h3 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-accept {
    padding: 12px 24px;
    background: #FFFFFF;
    color: #6B46C1;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    transform: scale(1.05);
    background: #E9D5FF;
}

.btn-learn {
    padding: 12px 24px;
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-learn:hover {
    background: #FFFFFF;
    color: #6B46C1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Policy Pages */
.policy-page {
    padding: 4rem 0;
    min-height: 60vh;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
    border: 2px solid #E9D5FF;
}

.policy-container h1 {
    color: #6B46C1;
    margin-bottom: 2rem;
    text-align: center;
}

.policy-container h2 {
    color: #6B46C1;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.thank-you-container {
    text-align: center;
}

.thank-you-container h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.thank-you-container p {
    text-align: center;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-container ul {
    text-align: left;
    display: inline-block;
    margin: 1rem auto;
}

.policy-container ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-container li {
    margin-bottom: 0.5rem;
    color: #1E1B4B;
}

.policy-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #E9D5FF;
}

.policy-contact h3 {
    color: #6B46C1;
    margin-bottom: 1rem;
}

.btn-back {
    display: inline-block;
    margin-top: 2rem;
    padding: 12px 24px;
    background: linear-gradient(135deg, #6B46C1 0%, #F59E0B 100%);
    color: #FFFFFF;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-back:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        position: relative;
    }
    
    .menu-icon {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(107, 70, 193, 0.2);
        display: none;
        margin-top: 1rem;
    }
    
    .menu-toggle:checked ~ .main-nav {
        display: flex;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .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, -7px);
    }
    
    .hero-section {
        background-attachment: scroll;
    }
    
    .features-grid,
    .services-grid,
    .steps-container,
    .benefits-grid,
    .testimonials-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        height: 300px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .policy-container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .order-form {
        padding: 1.5rem;
    }
}

