/* Global 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: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Palette */
:root {
    --primary-blue: #1E3A5F;
    --accent-teal: #00D4AA;
    --premium-gold: #FFB84D;
    --light-gray: #F5F7FA;
    --white: #FFFFFF;
    --dark-gray: #2C3E50;
    --medium-gray: #7F8C9A;
}

/* Typography */
h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 30px;
    text-align: center;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Header */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(30, 58, 95, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--accent-teal);
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-teal);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-teal);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile Menu */
@media (max-width: 767px) {
    .menu-icon {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        box-shadow: 0 4px 10px rgba(30, 58, 95, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .menu-toggle:checked ~ .nav-menu {
        max-height: 500px;
    }
    
    .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 */
.hero-section {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.9) 0%, rgba(0, 212, 170, 0.9) 100%), url('./img/6PxJzF.jpg') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 80px 20px;
    position: relative;
}

.hero-content h1 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--white);
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #00D4AA 0%, #1E3A5F 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 212, 170, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.4);
}

/* Sections */
section {
    padding: 80px 20px;
}

.section-gray {
    background-color: var(--light-gray);
}

.section-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    animation: fadeIn 1s ease-in;
}

.about-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
}

@media (max-width: 767px) {
    .about-section {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F7FA 100%);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(30, 58, 95, 0.2);
    border: 2px solid var(--accent-teal);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Benefits Section */
.benefits-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-list li {
    padding: 20px;
    margin-bottom: 15px;
    background-color: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--accent-teal);
    box-shadow: 0 2px 10px rgba(30, 58, 95, 0.05);
    animation: fadeInLeft 0.6s ease-out;
}

.benefits-list li:nth-child(1) { animation-delay: 0.1s; }
.benefits-list li:nth-child(2) { animation-delay: 0.2s; }
.benefits-list li:nth-child(3) { animation-delay: 0.3s; }
.benefits-list li:nth-child(4) { animation-delay: 0.4s; }
.benefits-list li:nth-child(5) { animation-delay: 0.5s; }
.benefits-list li:nth-child(6) { animation-delay: 0.6s; }

.benefits-list li::before {
    content: '✓';
    color: var(--accent-teal);
    font-weight: bold;
    font-size: 20px;
    margin-right: 10px;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00D4AA 0%, #1E3A5F 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

@media (max-width: 767px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
    text-align: center;
    animation: fadeIn 1s ease-in;
}

.testimonial-card h3 {
    color: var(--accent-teal);
    font-size: 36px;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Order Form Section */
.order-form-section {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.05) 0%, rgba(0, 212, 170, 0.05) 100%);
    padding: 80px 20px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(30, 58, 95, 0.15);
    border: 3px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #00D4AA, #1E3A5F);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    animation: fadeIn 1s ease-in;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 16px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: var(--white);
    color: var(--dark-gray);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.form-group select option {
    color: black;
    background-color: white;
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--accent-teal);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #00D4AA 0%, #1E3A5F 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 212, 170, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.4);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(30, 58, 95, 0.05);
    overflow: hidden;
    animation: fadeIn 0.6s ease-in;
}

.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 18px;
    list-style: none;
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 24px;
    color: var(--accent-teal);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    background-color: var(--light-gray);
}

.faq-item p {
    padding: 0 20px 20px 20px;
    color: var(--dark-gray);
    line-height: 1.8;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    align-items: stretch;
}

.contact-map {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info-box {
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
    border: 2px solid var(--light-gray);
}

.contact-info-box h3 {
    color: var(--primary-blue);
    margin-bottom: 30px;
    text-align: center;
    font-size: 28px;
}

.contact-details {
    text-align: left;
}

.contact-details p {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.contact-details strong {
    color: var(--primary-blue);
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.contact-details a {
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

@media (max-width: 767px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        height: 300px;
    }
    
    .contact-info-box {
        padding: 30px 20px;
    }
}

/* Footer */
.main-footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    color: var(--white);
    font-size: 16px;
    line-height: 1.6;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.footer-bottom p {
    color: var(--white);
}

@media (max-width: 767px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -4px 20px rgba(30, 58, 95, 0.2);
    padding: 25px;
    z-index: 10000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-popup[style*="display: none"] {
    display: none !important;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: var(--dark-gray);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept {
    padding: 12px 30px;
    background: linear-gradient(135deg, #00D4AA 0%, #1E3A5F 100%);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.btn-learn-more {
    padding: 12px 30px;
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

@media (max-width: 767px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-accept,
    .btn-learn-more {
        width: 100%;
    }
}

/* Policy Pages */
.policy-page {
    padding: 60px 20px;
    min-height: calc(100vh - 200px);
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
    border: 2px solid var(--light-gray);
}

.policy-container h1 {
    margin-bottom: 30px;
    text-align: center;
}

.policy-container h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: left;
    font-size: 24px;
}

.policy-container p {
    margin-bottom: 20px;
}

.policy-container ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-container li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.policy-contact {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--light-gray);
}

.policy-contact h3 {
    margin-bottom: 15px;
}

.policy-contact p {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Thank You Page */
.thank-you-page {
    padding: 100px 20px;
    text-align: center;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
    border: 2px solid var(--light-gray);
    animation: fadeInUp 1s ease-out;
}

.thank-you-content h1 {
    color: var(--accent-teal);
    margin-bottom: 20px;
}

.thank-you-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--dark-gray);
}

.btn-back {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #00D4AA 0%, #1E3A5F 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 212, 170, 0.3);
}

.btn-back:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.4);
}

