* {
    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: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    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;
    margin: 0;
}

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 8px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

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

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

.main-nav a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 80px 5% 80px 8%;
    background-color: #ecf0f1;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #34495e;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #2980b9;
    cursor: pointer;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 35px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #3498db;
    border-radius: 5px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
    cursor: pointer;
}

.intro-split {
    display: flex;
    min-height: 500px;
}

.intro-left {
    flex: 1;
    padding: 80px 8%;
    background-color: #ffffff;
}

.intro-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.intro-right {
    flex: 1;
    background-color: #bdc3c7;
}

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

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

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 20px;
    color: #7f8c8d;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

.service-card h3 {
    font-size: 24px;
    margin: 20px 20px 10px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    margin: 0 20px 15px;
    color: #34495e;
}

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

.select-service {
    display: block;
    width: calc(100% - 40px);
    margin: 20px;
    padding: 12px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #2980b9;
}

.form-split {
    display: flex;
    min-height: 600px;
}

.form-left {
    flex: 1;
    padding: 80px 8%;
    background-color: #34495e;
    color: #ffffff;
}

.form-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.form-left p {
    font-size: 18px;
    margin-bottom: 25px;
}

.form-benefits {
    list-style: none;
    margin-top: 30px;
}

.form-benefits li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
    font-size: 20px;
}

.form-right {
    flex: 1;
    padding: 80px 8%;
    background-color: #ecf0f1;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

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

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

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

.btn-primary {
    padding: 12px 25px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 12px 25px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.insights-split {
    display: flex;
    min-height: 500px;
}

.insights-left {
    flex: 1;
    padding: 80px 8%;
    background-color: #ffffff;
}

.insights-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.insights-right {
    flex: 1;
    background-color: #95a5a6;
}

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

.footer-split {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 5% 30px;
}

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

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
}

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

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

.footer-column a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    color: #95a5a6;
    margin-bottom: 15px;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.about-hero-split {
    display: flex;
    min-height: 500px;
}

.about-hero-left {
    flex: 1;
    padding: 80px 8%;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-left h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-hero-left p {
    font-size: 20px;
    color: #34495e;
}

.about-hero-right {
    flex: 1;
    background-color: #7f8c8d;
}

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

.story-split {
    display: flex;
    min-height: 500px;
}

.story-left {
    flex: 1;
    padding: 80px 8%;
    background-color: #ffffff;
}

.story-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.story-right {
    flex: 1;
    background-color: #95a5a6;
}

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

.philosophy-split {
    display: flex;
    min-height: 500px;
}

.philosophy-left {
    flex: 1;
    padding: 80px 8%;
    background-color: #ecf0f1;
}

.philosophy-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.philosophy-right {
    flex: 1;
    background-color: #7f8c8d;
}

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

.values-center {
    padding: 80px 5%;
    background-color: #ffffff;
    text-align: center;
}

.values-center h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #3498db;
}

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

.team-split {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.team-header {
    text-align: center;
    margin-bottom: 50px;
}

.team-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.team-header p {
    font-size: 20px;
    color: #7f8c8d;
}

.team-split-layout {
    display: flex;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    gap: 50px;
    align-items: center;
}

.team-split-layout.reverse {
    flex-direction: row-reverse;
}

.team-left {
    flex: 1;
}

.team-left img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #ecf0f1;
}

.team-right {
    flex: 1;
}

.team-right h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.team-role {
    font-size: 18px;
    color: #3498db;
    margin-bottom: 20px;
    font-weight: 600;
}

.team-right p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.7;
}

.cta-about {
    padding: 80px 5%;
    background-color: #34495e;
    text-align: center;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 20px;
    margin-bottom: 35px;
}

.services-hero {
    padding: 80px 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro {
    font-size: 22px;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-left {
    flex: 1;
    background-color: #bdc3c7;
}

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

.service-detail-right {
    flex: 1;
    padding: 60px 8%;
    background-color: #ffffff;
}

.service-detail-right h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.service-detail-right p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.service-detail-right h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-detail-right ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-right ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 17px;
    color: #34495e;
}

.service-detail-right ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 20px;
}

.booking-section {
    padding: 80px 5%;
    background-color: #ecf0f1;
}

.booking-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

.booking-section > p {
    text-align: center;
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.contact-form-centered {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-split {
    display: flex;
    min-height: 600px;
}

.contact-left {
    flex: 1;
    padding: 80px 8%;
    background-color: #f8f9fa;
}

.contact-left h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-left > p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #34495e;
}

.contact-info-block {
    margin-bottom: 40px;
}

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.info-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #3498db;
}

.info-item p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.6;
}

.contact-note {
    padding: 20px;
    background-color: #e8f4f8;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.contact-note p {
    font-size: 16px;
    color: #2c3e50;
    margin: 0;
}

.contact-right {
    flex: 1;
    background-color: #95a5a6;
}

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

.contact-cta {
    padding: 80px 5%;
    background-color: #34495e;
    text-align: center;
    color: #ffffff;
}

.contact-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 20px;
    margin-bottom: 35px;
}

.thanks-hero {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.thanks-content {
    flex: 1.2;
    padding: 80px 8%;
    background-color: #ecf0f1;
}

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

.thanks-message {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-confirmation {
    font-size: 18px;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 30px;
}

.thanks-next-steps {
    margin: 40px 0;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-next-steps ol {
    padding-left: 25px;
}

.thanks-next-steps li {
    font-size: 17px;
    margin-bottom: 12px;
    color: #34495e;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.thanks-image {
    flex: 1;
    background-color: #7f8c8d;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 5%;
}

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

.legal-intro {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

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

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

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

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

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2980b9;
}

.legal-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 15px;
    color: #7f8c8d;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 16px;
    color: #34495e;
}

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

    .header-right {
        flex-direction: column;
        gap: 15px;
    }

    .hero-split,
    .intro-split,
    .form-split,
    .insights-split,
    .story-split,
    .philosophy-split,
    .service-detail-split,
    .contact-split,
    .thanks-hero,
    .about-hero-split {
        flex-direction: column;
    }

    .hero-left,
    .intro-left,
    .form-left,
    .insights-left,
    .story-left,
    .philosophy-left,
    .service-detail-right,
    .contact-left,
    .thanks-content,
    .about-hero-left {
        padding: 40px 5%;
    }

    .hero-right,
    .intro-right,
    .insights-right,
    .story-right,
    .philosophy-right,
    .service-detail-left,
    .contact-right,
    .thanks-image,
    .about-hero-right {
        min-height: 300px;
    }

    .hero-left h1,
    .about-hero-left h1,
    .thanks-content h1 {
        font-size: 36px;
    }

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

    .team-split-layout {
        flex-direction: column;
        gap: 30px;
    }

    .team-split-layout.reverse {
        flex-direction: column;
    }

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

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

    .thanks-actions a {
        text-align: center;
    }
}