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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2d5f7f;
    --accent-color: #c9a86a;
    --text-dark: #1f1f1f;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: var(--accent-color);
    color: var(--text-dark);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

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

.hero-text {
    max-width: 580px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 28px;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    background-color: #d4d8db;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 42px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-color);
    padding: 14px 38px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.value-split {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

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

.split-image {
    flex: 1;
    background-color: #dfe2e5;
    overflow: hidden;
}

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

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

.split-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.split-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.insight-section {
    padding: 90px 40px;
    background-color: var(--bg-white);
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.insight-section h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

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

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

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

.insight-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 14px;
    font-weight: 600;
}

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

.services-preview {
    padding: 90px 40px;
    background-color: var(--bg-light);
}

.services-preview h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.service-cards-split {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
}

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

.card-content {
    padding: 30px 28px;
}

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

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

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: var(--primary-color);
}

.trust-split {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.trust-split blockquote {
    background-color: var(--bg-light);
    padding: 28px 32px;
    margin-bottom: 25px;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.trust-split blockquote p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.7;
}

.trust-split cite {
    font-size: 15px;
    color: var(--text-light);
    font-style: normal;
}

.inquiry-section {
    padding: 90px 40px;
    background-color: var(--bg-white);
}

.inquiry-section h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 18px;
    text-align: center;
    font-weight: 700;
}

.inquiry-section > div > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 45px;
}

.inquiry-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.submit-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px 40px;
    background-color: var(--bg-light);
}

.disclaimer {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
    font-style: italic;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 40px 30px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--bg-white);
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 24px 30px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

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

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

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

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

.cookie-btn.reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.page-hero {
    padding: 80px 40px 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 18px;
    font-weight: 700;
}

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

.about-split,
.values-split {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

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

.methodology-section {
    padding: 90px 40px;
    background-color: var(--bg-light);
}

.methodology-section h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

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

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

.method-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 14px;
    font-weight: 600;
}

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

.principles-section {
    padding: 90px 40px;
    background-color: var(--bg-white);
}

.principles-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.principles-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.8;
}

.principles-list {
    list-style: none;
    padding-left: 0;
}

.principles-list li {
    font-size: 17px;
    color: var(--text-light);
    padding: 18px 0 18px 40px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.7;
}

.principles-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
}

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

.team-section h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

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

.team-split {
    display: flex;
    gap: 40px;
    align-items: center;
}

.team-image {
    flex: 1;
    background-color: #dfe2e5;
    border-radius: 8px;
    overflow: hidden;
}

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

.team-text {
    flex: 1;
}

.team-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-detailed {
    padding: 60px 40px 90px;
}

.service-detail-split {
    display: flex;
    align-items: stretch;
    margin-bottom: 60px;
    min-height: 450px;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.service-price {
    font-size: 30px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

.service-detail-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 14px;
    margin-top: 8px;
    font-weight: 600;
}

.service-detail-content ul {
    margin-bottom: 32px;
    padding-left: 24px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.service-detail-image {
    flex: 1;
    background-color: #dfe2e5;
    overflow: hidden;
}

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

.process-section {
    padding: 90px 40px;
    background-color: var(--bg-light);
}

.process-section h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.process-section > div > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.process-steps {
    list-style: none;
    counter-reset: step-counter;
}

.process-steps li {
    counter-increment: step-counter;
    margin-bottom: 35px;
    padding-left: 60px;
    position: relative;
}

.process-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.process-steps h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.process-steps p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.contact-details {
    flex: 1;
    padding: 70px 60px;
    background-color: var(--bg-light);
}

.contact-block {
    margin-bottom: 45px;
}

.contact-block h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 14px;
    font-weight: 600;
}

.contact-block p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

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

.hours-note {
    margin-top: 14px;
    font-size: 15px;
    font-style: italic;
}

.contact-block ul {
    list-style: none;
    padding-left: 0;
}

.contact-block ul li {
    font-size: 16px;
    color: var(--text-light);
    padding: 6px 0;
    line-height: 1.6;
}

.contact-image {
    flex: 1;
    background-color: #dfe2e5;
    overflow: hidden;
}

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

.directions-section {
    padding: 90px 40px;
    background-color: var(--bg-white);
}

.directions-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.directions-section > div > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.direction-card {
    flex: 1;
    min-width: 260px;
    padding: 30px 26px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

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

.inquiry-notice {
    padding: 70px 40px;
    background-color: var(--bg-light);
}

.inquiry-notice h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.inquiry-notice p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.8;
}

.inquiry-notice a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.inquiry-notice a:hover {
    color: var(--primary-color);
}

.thanks-section {
    padding: 90px 40px;
    background-color: var(--bg-light);
}

.thanks-section h1 {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 18px;
    text-align: center;
    font-weight: 700;
}

.thanks-section > div > p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 45px;
    text-align: center;
    line-height: 1.7;
}

.thanks-details {
    max-width: 700px;
    margin: 0 auto 50px;
    padding: 35px 40px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.thanks-details p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.8;
}

#serviceConfirmation {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 18px;
}

.next-steps {
    max-width: 700px;
    margin: 0 auto 50px;
}

.next-steps h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

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

.next-steps li {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.additional-info {
    padding: 70px 40px;
    background-color: var(--bg-white);
}

.additional-info h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 18px;
    text-align: center;
    font-weight: 700;
}

.additional-info > div > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    text-align: center;
    line-height: 1.8;
}

.info-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.info-links a {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--bg-light);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.info-links a:hover {
    background-color: var(--border-color);
}

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

.legal-page h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

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

.legal-page h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 28px;
}

.legal-page ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-page a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--primary-color);
}

@media (max-width: 900px) {
    .hero-split,
    .value-split,
    .trust-split,
    .about-split,
    .values-split,
    .service-detail-split,
    .contact-split,
    .team-split {
        flex-direction: column;
    }

    .value-split.reverse,
    .values-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .nav-links {
        gap: 20px;
    }

    .service-cards-split {
        flex-direction: column;
    }

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

    .cookie-actions {
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
    }
}