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

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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #2a5a7f;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

.nav-menu a:hover {
    color: #2a5a7f;
}

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a3a4f;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #4a5568;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2a5a7f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1f4460;
}

.split-intro {
    display: flex;
}

.split-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.split-text {
    flex: 1;
    padding: 80px 60px;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a3a4f;
}

.split-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.services-preview {
    padding: 100px 30px;
    background-color: #ffffff;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a3a4f;
}

.section-header-center p {
    font-size: 18px;
    color: #6c757d;
}

.services-grid-alt {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-split {
    display: flex;
    gap: 0;
    background-color: #f8f9fa;
}

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

.service-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

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

.service-info {
    flex: 1;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a3a4f;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #4a5568;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #2a5a7f;
}

.form-section-split {
    display: flex;
    background-color: #f8f9fa;
}

.form-content {
    flex: 1;
    padding: 80px 60px;
}

.form-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a3a4f;
}

.form-content p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #6c757d;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    font-size: 15px;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px 50px;
    background-color: #2a5a7f;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

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

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a3a4f;
}

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

.trust-item {
    flex: 1;
    min-width: 280px;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2a5a7f;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.main-footer {
    background-color: #1a3a4f;
    color: #ffffff;
    padding: 60px 30px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

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

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

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

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

.footer-section ul a {
    color: #b8c5d0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid #2a5a7f;
    border-bottom: 1px solid #2a5a7f;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #b8c5d0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3a4f;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #82c4e8;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #2a5a7f;
    color: #ffffff;
}

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

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

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

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

.hero-text-only {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-text-only h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a3a4f;
}

.hero-text-only p {
    font-size: 20px;
    color: #6c757d;
}

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

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

.about-story-split {
    display: flex;
}

.story-content {
    flex: 1;
    padding: 80px 60px;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a3a4f;
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #4a5568;
}

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

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

.values-section {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 80px;
    color: #1a3a4f;
}

.values-split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.value-block {
    display: flex;
    gap: 0;
    background-color: #ffffff;
}

.value-block.reverse {
    flex-direction: row-reverse;
}

.value-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

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

.value-text {
    flex: 1;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-text h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a3a4f;
}

.value-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.team-approach {
    padding: 100px 30px;
    background-color: #ffffff;
}

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

.approach-container h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a3a4f;
}

.approach-content-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #4a5568;
}

.approach-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 500px;
}

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

.cta-about {
    padding: 100px 30px;
    background-color: #1a3a4f;
}

.cta-content-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-content-centered p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #b8c5d0;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #1a3a4f;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.cta-secondary:hover {
    background-color: #f0f0f0;
}

.services-header {
    padding: 80px 30px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a3a4f;
}

.services-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: #6c757d;
}

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

.service-detail-split {
    display: flex;
    gap: 0;
    margin-bottom: 80px;
    background-color: #f8f9fa;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a3a4f;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #4a5568;
}

.service-features {
    list-style: none;
    margin-bottom: 35px;
}

.service-features li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #4a5568;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2a5a7f;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 30px;
}

.price-label {
    font-size: 14px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 38px;
    font-weight: 700;
    color: #2a5a7f;
}

.price-note {
    font-size: 15px;
    color: #6c757d;
}

.service-cta {
    display: inline-block;
    padding: 14px 35px;
    background-color: #2a5a7f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #1f4460;
}

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

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

.pricing-notes {
    padding: 60px 30px;
    background-color: #f8f9fa;
}

.notes-container {
    max-width: 900px;
    margin: 0 auto;
}

.notes-container h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a3a4f;
}

.notes-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.contact-hero {
    padding: 80px 30px;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a3a4f;
}

.contact-hero p {
    font-size: 20px;
    color: #6c757d;
}

.contact-main-split {
    display: flex;
}

.contact-info-block {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a3a4f;
}

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

.info-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2a5a7f;
}

.info-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.info-item p.note {
    font-size: 15px;
    color: #6c757d;
    margin-top: 10px;
}

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

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

.contact-approach {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

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

.approach-wrapper h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a3a4f;
}

.approach-steps {
    display: flex;
    gap: 40px;
}

.step-item {
    flex: 1;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a3a4f;
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

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

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    background-color: #f8f9fa;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a3a4f;
}

.cta-box p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #6c757d;
}

.thanks-main {
    padding: 100px 30px;
    min-height: 60vh;
}

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

.thanks-icon {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a3a4f;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 40px;
    color: #6c757d;
}

.selected-service-info {
    margin-bottom: 40px;
}

.selected-service {
    font-size: 17px;
    padding: 20px;
    background-color: #f8f9fa;
    display: inline-block;
}

.next-steps {
    margin: 60px 0;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a3a4f;
}

.steps-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.step-box {
    flex: 1;
    padding: 30px;
    background-color: #f8f9fa;
    text-align: left;
}

.step-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2a5a7f;
}

.step-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary-thanks,
.btn-secondary-thanks {
    padding: 16px 35px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.btn-primary-thanks {
    background-color: #2a5a7f;
    color: #ffffff;
}

.btn-primary-thanks:hover {
    background-color: #1f4460;
}

.btn-secondary-thanks {
    background-color: transparent;
    color: #2a5a7f;
    border: 2px solid #2a5a7f;
}

.btn-secondary-thanks:hover {
    background-color: #f8f9fa;
}

.legal-page {
    padding: 80px 30px;
}

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

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

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a3a4f;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2a5a7f;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 40px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4a5568;
}

.last-updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a3a4f;
}

.cookies-table td {
    font-size: 15px;
    color: #4a5568;
}

@media (max-width: 768px) {
    .hero-split,
    .split-intro,
    .form-section-split,
    .page-hero-split,
    .about-story-split,
    .contact-main-split,
    .approach-content-split {
        flex-direction: column;
    }

    .service-card-split,
    .value-block,
    .service-detail-split {
        flex-direction: column !important;
    }

    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

    .hero-content h1,
    .hero-text-only h1,
    .services-header h1,
    .contact-hero h1 {
        font-size: 32px;
    }

    .section-header-center h2,
    .trust-content h2,
    .values-section h2,
    .approach-container h2,
    .cta-content-centered h2,
    .thanks-container h1 {
        font-size: 32px;
    }

    .trust-grid,
    .approach-steps,
    .steps-grid {
        flex-direction: column;
    }

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

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

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
}