* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #229954;
}

.cookie-btn.reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cookie-btn.reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
}

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

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

.nav-menu a:hover {
    color: #27ae60;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #2c3e50;
}

.hero-magazine {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-main {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 60px;
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-overlay h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 16px;
}

.hero-overlay p {
    font-size: 18px;
    color: #5a6c7d;
}

.intro-columns {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.col-layout {
    display: flex;
    gap: 60px;
}

.col-main {
    flex: 2;
}

.col-main h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.col-main p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.col-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 32px;
    border-radius: 4px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.info-card p {
    font-size: 15px;
    line-height: 1.6;
}

.col-sidebar img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
}

.experience-grid {
    padding: 80px 0;
}

.experience-grid h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.grid-3 {
    display: flex;
    gap: 32px;
}

.experience-card {
    flex: 1;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.experience-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.experience-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #2c3e50;
}

.experience-card p {
    font-size: 16px;
    margin: 0 24px 24px;
    color: #4a5568;
    line-height: 1.7;
}

.services-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-intro {
    margin-bottom: 48px;
}

.services-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.services-intro p {
    font-size: 18px;
    color: #5a6c7d;
    max-width: 700px;
}

.services-layout {
    display: flex;
    gap: 40px;
}

.service-featured {
    flex: 1.5;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-featured img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #27ae60;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.service-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-compact {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.service-compact h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.service-compact p {
    font-size: 14px;
    color: #5a6c7d;
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-compact .service-price {
    font-size: 18px;
    margin-bottom: 12px;
}

.cta-button-small {
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button-small:hover {
    background-color: #1e4620;
}

.testimonial-section {
    padding: 80px 0;
    background-color: #2c5f2d;
}

.testimonial {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.testimonial p {
    font-size: 22px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.9;
}

.booking-form-section {
    padding: 80px 0;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #2c3e50;
}

.form-wrapper > p {
    text-align: center;
    margin-bottom: 40px;
    color: #5a6c7d;
    font-size: 16px;
}

.booking-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.submit-button {
    width: 100%;
    background-color: #27ae60;
    color: #ffffff;
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #229954;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.disclaimer {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 24px;
    border-radius: 4px;
}

.disclaimer h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #856404;
}

.disclaimer p {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #27ae60;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-service {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 4px;
    margin: 32px 0;
}

.thanks-service strong {
    color: #2c3e50;
}

.back-button {
    display: inline-block;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 12px 32px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 24px;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #1e4620;
}

@media (max-width: 968px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
        padding: 24px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .col-layout {
        flex-direction: column;
    }

    .grid-3 {
        flex-direction: column;
    }

    .services-layout {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
    }
}