* {
    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-color: #ffffff;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept, .btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

.navigation {
    background-color: #ffffff;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f4e;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

.nav-links a:hover {
    color: #2c5f4e;
}

.ad-notice {
    font-size: 0.8rem;
    color: #7f8c8d;
    padding: 0.4rem 0.8rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f4f7f5;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
}

.hero-left p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #4a5f56;
}

.hero-right {
    flex: 1;
    background-color: #d4e4dc;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c5f4e;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1a3a2e;
    transform: translateY(-2px);
}

.intro-narrative {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #34495e;
}

.split-reverse {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

.split-image {
    flex: 1;
    background-color: #e8f0ed;
}

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

.split-content {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #fafbfb;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5f56;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a3a2e;
}

.services-intro p {
    font-size: 1.2rem;
    color: #4a5f56;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background-color: #ffffff;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a3a2e;
}

.service-card p {
    font-size: 1rem;
    margin: 0 1.5rem 1.5rem;
    color: #4a5f56;
}

.service-card .price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f4e;
    margin: 1rem 1.5rem 1.5rem;
}

.cta-inline {
    text-align: center;
    margin-top: 3rem;
}

.cta-inline a {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a3a2e;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-inline a:hover {
    background-color: #2c5f4e;
}

.split-standard {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    flex-direction: row-reverse;
}

.testimonial-flow {
    padding: 5rem 2rem;
    background-color: #2c5f4e;
    color: #ffffff;
}

.testimonial-block {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.testimonial-block:last-child {
    margin-bottom: 0;
}

.testimonial-block blockquote {
    border-left: 4px solid #ffffff;
    padding-left: 2rem;
}

.testimonial-block p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-block cite {
    font-style: normal;
    font-size: 1rem;
    opacity: 0.9;
}

.approach-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.approach-container h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a3a2e;
}

.approach-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.approach-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f4f7f5;
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f4e;
}

.approach-item p {
    font-size: 1rem;
    color: #4a5f56;
}

.booking-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
}

.booking-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a3a2e;
}

.booking-container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #4a5f56;
}

.booking-form {
    background-color: #ffffff;
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2c5f4e;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.footer {
    background-color: #1a3a2e;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #b8c5c0;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
    border-top: 1px solid #2c5f4e;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #b8c5c0;
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.85rem;
    max-width: 900px;
    margin: 1.5rem auto 0;
    line-height: 1.5;
    color: #95a5a0;
}

.services-page-header {
    padding: 5rem 2rem 3rem;
    background-color: #f4f7f5;
    text-align: center;
}

.services-page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a3a2e;
}

.services-page-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #4a5f56;
}

.services-detailed {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #e8f0ed;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a3a2e;
}

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5f56;
}

.service-detail-content .price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f4e;
    margin-bottom: 1.5rem;
    display: block;
}

.service-detail-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #4a5f56;
}

.about-hero {
    padding: 5rem 2rem;
    background-color: #2c5f4e;
    color: #ffffff;
}

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

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.about-hero-content p {
    font-size: 1.3rem;
    line-height: 1.7;
}

.about-story {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.about-split {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
}

.about-split-image {
    flex: 1;
    background-color: #e8f0ed;
}

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

.about-split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
}

.about-split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5f56;
}

.contact-page {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a5f56;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c5f4e;
}

.contact-detail p {
    font-size: 1rem;
    color: #4a5f56;
    margin-bottom: 0.5rem;
}

.contact-map {
    flex: 1;
    background-color: #e8f0ed;
    min-height: 500px;
}

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

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a3a2e;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5f4e;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2c5f4e;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #4a5f56;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #4a5f56;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #f4f7f5;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c5f4e;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a5f56;
}

.thanks-content a {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c5f4e;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.thanks-content a:hover {
    background-color: #1a3a2e;
}

@media (max-width: 768px) {
    .hero-split,
    .split-reverse,
    .split-standard,
    .services-grid,
    .approach-grid,
    .footer-container,
    .service-detail,
    .about-split,
    .contact-container {
        flex-direction: column;
    }

    .hero-left h1,
    .services-intro h2,
    .approach-container h2 {
        font-size: 2.5rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}