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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fdfefe;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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;
}

.cookie-content p {
    flex: 1;
    margin-right: 20px;
    font-size: 14px;
}

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

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

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

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

.btn-reject {
    background-color: #95a5a6;
    color: white;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 28px;
    font-weight: 700;
    color: #2d6a4f;
    letter-spacing: 1px;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 6px 12px;
    background-color: #ecf0f1;
    border-radius: 3px;
    font-weight: 500;
}

.main-nav a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2d6a4f;
}

.hero-visual {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 85vh;
    background-color: #95a5a6;
}

.hero-image-wrapper 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.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    max-width: 900px;
}

.hero-overlay p {
    font-size: 22px;
    color: #f8f9fa;
    max-width: 700px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.intro-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

.intro-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.intro-narrow h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a5e3d;
    font-weight: 600;
}

.intro-narrow p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.services-visual {
    padding: 80px 30px;
    background-color: #f4f6f7;
}

.services-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a5e3d;
    font-weight: 600;
}

.service-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 350px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #bdc3c7;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a5e3d;
    font-weight: 600;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

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

.btn-select {
    padding: 12px 24px;
    background-color: #2d6a4f;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #1a5e3d;
}

.form-section {
    padding: 90px 30px;
    background-color: #e8f5e9;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a5e3d;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
}

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

.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 #bdc3c7;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.philosophy-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.philosophy-content img {
    width: 50%;
    border-radius: 8px;
    object-fit: cover;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a5e3d;
}

.philosophy-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
}

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

.footer-content {
    max-width: 1400px;
    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: 15px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid #34495e;
    border-bottom: 1px solid #34495e;
}

.footer-disclaimer p {
    font-size: 12px;
    color: #95a5a6;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: #7f8c8d;
}

.page-hero {
    padding: 80px 30px 60px;
    background: linear-gradient(135deg, #2d6a4f 0%, #40916c 100%);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.page-hero p {
    font-size: 20px;
    margin-top: 15px;
}

.about-content,
.contact-content,
.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 30px;
}

.about-story,
.about-values,
.about-mission,
.about-team {
    margin-bottom: 60px;
}

.about-story h2,
.about-values h2,
.about-mission h2,
.about-team h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a5e3d;
}

.about-story p,
.about-mission p,
.about-team p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
}

.about-image,
.about-image-bottom {
    margin: 60px 0;
}

.about-image img,
.about-image-bottom img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d6a4f;
}

.value-item p {
    font-size: 16px;
    color: #555;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
}

.service-full {
    margin-bottom: 60px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-header {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #bdc3c7;
}

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

.service-body {
    padding: 40px;
}

.service-body h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a5e3d;
}

.service-body p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #34495e;
}

.service-pricing {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
    margin: 25px 0;
}

.booking-cta {
    text-align: center;
    padding: 80px 30px;
    background-color: #e8f5e9;
}

.booking-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a5e3d;
}

.booking-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background-color: #2d6a4f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #1a5e3d;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #95a5a6;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-block {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.contact-block h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a5e3d;
}

.contact-block p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.8;
}

.contact-block .note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 10px;
    font-style: italic;
}

.contact-image {
    margin: 60px 0;
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a5e3d;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d6a4f;
}

.faq-item p {
    font-size: 16px;
    color: #555;
}

.thanks-section {
    padding: 100px 30px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

.thanks-content p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #34495e;
}

.thanks-actions {
    margin-top: 40px;
}

.thanks-image {
    flex: 1;
}

.thanks-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a5e3d;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2d6a4f;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #40916c;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #34495e;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #34495e;
    line-height: 1.8;
}

.legal-content a {
    color: #2d6a4f;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1a5e3d;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

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

    .hero-overlay p {
        font-size: 18px;
    }

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

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

    .philosophy-content img {
        width: 100%;
    }

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

    .thanks-section {
        flex-direction: column;
    }

    .contact-info {
        flex-direction: column;
    }

    .value-item {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content p {
        margin-right: 0;
        margin-bottom: 15px;
    }
}