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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.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-content a {
    color: #68c3a3;
    text-decoration: underline;
}

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

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

.btn-cookie {
    background: #68c3a3;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #57b08f;
}

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

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

.main-header {
    background: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #68c3a3;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.hero-section {
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #e8f5f1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 40px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #68c3a3;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #57b08f;
    transform: translateY(-2px);
}

.intro-section {
    padding: 80px 20px;
}

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

.intro-text {
    font-size: 22px;
    line-height: 1.8;
    color: #34495e;
    text-align: center;
}

.featured-services-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

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

.service-card-large {
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.service-card-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-card-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #68c3a3;
    margin-bottom: 20px;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #68c3a3;
    border: 2px solid #68c3a3;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-secondary:hover {
    background: #68c3a3;
    color: #ffffff;
}

.service-card-image {
    flex: 1;
    min-height: 400px;
    background-color: #e8f5f1;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-section {
    padding: 100px 20px;
}

.dark-bg {
    background: #2c3e50;
    color: #ffffff;
}

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

.approach-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.approach-content p {
    font-size: 19px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 50px;
}

.approach-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #68c3a3;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.85;
}

.services-grid-section {
    padding: 80px 20px;
}

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

.section-heading {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(50% - 15px);
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card-img-wrapper {
    height: 250px;
    overflow: hidden;
    background-color: #e8f5f1;
}

.service-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.service-card p {
    padding: 0 24px 16px;
    color: #555;
    font-size: 16px;
}

.service-card .service-price {
    padding: 0 24px 24px;
    font-size: 22px;
}

.testimonial-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.testimonial-block {
    margin-bottom: 40px;
    padding: 40px;
    background: #ffffff;
    border-left: 4px solid #68c3a3;
    border-radius: 6px;
}

.testimonial-text {
    font-size: 19px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 600;
}

.cta-section {
    padding: 80px 20px;
}

.light-bg {
    background: #e8f5f1;
}

.cta-content-center {
    text-align: center;
}

.cta-content-center h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-content-center p {
    font-size: 19px;
    color: #555;
}

.form-section {
    padding: 80px 20px 100px;
}

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

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

.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 #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-primary-large {
    width: 100%;
    padding: 16px;
    background: #68c3a3;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    background: #57b08f;
}

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #7f8c8d;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #68c3a3;
}

.footer-column a {
    display: block;
    margin-bottom: 8px;
    color: #bdc3c7;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #68c3a3;
}

.footer-column p {
    color: #bdc3c7;
    font-size: 15px;
    line-height: 1.6;
}

.email-display {
    margin-top: 8px;
}

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

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

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

.thanks-content h1 {
    font-size: 42px;
    color: #68c3a3;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 19px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.btn-home {
    display: inline-block;
    padding: 14px 36px;
    background: #68c3a3;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-home:hover {
    background: #57b08f;
}

.legal-section {
    padding: 80px 20px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: #555;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: #555;
}

.contact-section {
    padding: 80px 20px;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h1 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.contact-detail {
    margin-bottom: 30px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 6px;
}

.contact-detail h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.contact-detail p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

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

    .hero-content p {
        font-size: 17px;
    }

    .service-card-large {
        flex-direction: column;
    }

    .service-card-content {
        padding: 40px 30px;
    }

    .service-card {
        flex: 0 1 100%;
    }

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

    .cookie-content {
        flex-direction: column;
    }

    .approach-stats {
        flex-direction: column;
        text-align: center;
    }
}