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

:root {
    --primary-color: #2a5a7c;
    --secondary-color: #5a7c8e;
    --accent-color: #7c9ba5;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.ad-disclosure {
    background-color: #f0f0f0;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-light);
}

.hero-visual {
    flex: 1;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

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

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-visual {
    flex: 1;
    overflow: hidden;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: var(--white);
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.intro-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-light);
}

.services-grid {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-header p {
    font-size: 20px;
    color: var(--text-light);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 360px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

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

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.card-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 15px;
}

.price {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    margin: 20px 0;
}

.card-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.card-link:hover {
    color: var(--secondary-color);
}

.cta-split {
    display: flex;
    min-height: 400px;
}

.cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: var(--primary-color);
    color: var(--white);
}

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

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta-visual {
    flex: 1;
    overflow: hidden;
}

.cta-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.form-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--primary-color);
}

.form-container > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.booking-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(42, 90, 124, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.trust-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 50px 20px 20px;
}

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

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

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

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    margin-top: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    color: var(--text-dark);
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-accept {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-accept:hover {
    background-color: var(--secondary-color);
}

.btn-reject {
    background-color: #ddd;
    color: var(--text-dark);
}

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 20px;
    text-align: center;
    color: var(--white);
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

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

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

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

.service-detail-visual {
    flex: 1;
    overflow: hidden;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: var(--white);
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-light);
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    margin: 25px 0;
}

.btn-service {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-centered {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--bg-light);
}

.cta-centered h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cta-centered p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--text-light);
}

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

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: var(--white);
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-light);
}

.about-visual {
    flex: 1;
    overflow: hidden;
}

.about-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

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

.story-section.reverse {
    flex-direction: row-reverse;
}

.story-visual {
    flex: 1;
    overflow: hidden;
}

.story-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.story-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: var(--white);
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.story-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-light);
}

.team-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.team-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.expertise-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.expertise-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
}

.expertise-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.expertise-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.mission-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: var(--white);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.mission-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: var(--white);
}

.info-block h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.info-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 5px;
}

.email-display {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-visual {
    flex: 1;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-directions {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.contact-directions h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.direction-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
}

.direction-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.direction-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-alternative {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: var(--white);
}

.alternative-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.alternative-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.alternative-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 30px;
}

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

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.next-steps {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.action-link {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.action-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.thanks-info {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    text-align: left;
}

.thanks-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.thanks-info ul {
    list-style: none;
    padding-left: 0;
}

.thanks-info ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.thanks-info ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.legal-page {
    padding: 60px 20px 80px;
    background-color: var(--white);
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.last-updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-light);
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text-light);
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--secondary-color);
}

.split-layout {
    display: flex;
}

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .cta-split,
    .service-detail,
    .about-split,
    .story-section,
    .contact-split {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .cta-content,
    .service-detail-content,
    .about-content,
    .story-content,
    .contact-info {
        padding: 40px 20px;
    }

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

    .service-card {
        min-width: 100%;
    }

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

    .values-grid,
    .trust-grid,
    .expertise-list,
    .directions-grid {
        flex-direction: column;
    }
}