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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a9bc7;
    --accent-color: #e8734e;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
}

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

.ad-notice {
    background-color: var(--bg-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

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

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

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

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

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

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

.hero-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.intro-section {
    padding: 100px 40px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.intro-left {
    flex: 1.2;
}

.intro-left h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: var(--primary-color);
}

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

.intro-right {
    flex: 1;
    background-color: var(--bg-light);
}

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

.value-proposition {
    background-color: var(--bg-light);
    padding: 100px 40px;
}

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

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

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

.benefit-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 4px;
}

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

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

.services-showcase {
    padding: 100px 40px;
}

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

.services-header h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

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

.service-item {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: var(--primary-color);
}

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

.service-visual {
    flex: 1;
    background-color: var(--bg-light);
}

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

.price {
    display: block;
    font-size: 32px;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 24px;
}

.form-container {
    max-width: 700px;
    margin: 80px auto 0;
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 4px;
}

.form-container h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

.form-group input,
.form-group select {
    padding: 12px;
    font-size: 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-white);
}

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

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

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

.trust-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.testimonials-offset {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    background-color: var(--bg-white);
    padding: 40px;
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
}

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

.final-cta {
    padding: 100px 40px;
    text-align: center;
}

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

.cta-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.site-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 40px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #3a3a3a;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #808080;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 24px 40px;
    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: 14px;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.cookie-link {
    color: var(--bg-white);
    text-decoration: underline;
    font-size: 14px;
}

.page-hero {
    background-color: var(--bg-light);
    padding: 100px 40px 80px;
}

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

.hero-content-center h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.about-content {
    padding: 80px 40px;
}

.about-main {
    max-width: 800px;
    margin: 0 auto;
}

.about-main h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-main h2:first-child {
    margin-top: 0;
}

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

.about-main img {
    width: 100%;
    height: auto;
    margin: 40px 0;
}

.philosophy-list,
.client-list {
    margin: 24px 0;
    padding-left: 24px;
}

.philosophy-list li,
.client-list li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 12px;
}

.inline-cta {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 28px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.inline-cta:hover {
    background-color: #d66340;
}

.about-image-split {
    margin: 40px 0;
    background-color: var(--bg-light);
}

.services-detail {
    padding: 60px 40px;
}

.service-block {
    max-width: 1200px;
    margin: 0 auto 100px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.service-description {
    flex: 1.2;
}

.service-description h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-description h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

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

.service-features {
    margin: 20px 0;
    padding-left: 24px;
}

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

.service-outcome {
    background-color: var(--bg-light);
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    margin-top: 24px;
}

.price-box {
    margin-top: 32px;
    padding: 24px;
    background-color: var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
}

.price-label {
    font-size: 18px;
    color: var(--text-dark);
}

.price-amount {
    font-size: 36px;
    font-weight: 600;
    color: var(--accent-color);
}

.service-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

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

.contact-section {
    padding: 60px 40px;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

.contact-image {
    width: 100%;
    margin-top: 40px;
}

.contact-map-info {
    flex: 1;
}

.contact-map-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-map-info h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.contact-map-info p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.directions-list {
    margin: 20px 0;
    padding-left: 24px;
}

.directions-list li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 12px;
}

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

.thanks-section {
    padding: 100px 40px;
}

.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: 20px;
    color: var(--primary-color);
}

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

.thanks-details {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 4px;
    text-align: left;
    margin-bottom: 40px;
}

.thanks-details h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.next-steps {
    padding-left: 24px;
    margin: 20px 0;
}

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

.confirmation-note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 24px;
}

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

.btn-primary {
    padding: 14px 28px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 14px 28px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s;
}

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

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

.thanks-additional h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.additional-resources {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 4px;
}

.resource-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

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

.resource-card a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.resource-card a:hover {
    color: #d66340;
}

.legal-page {
    padding: 60px 40px 100px;
}

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

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 28px;
}

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

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

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

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
    font-size: 15px;
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

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

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

    .content-wrapper,
    .service-item,
    .service-block,
    .contact-container {
        flex-direction: column;
    }

    .service-item.reverse,
    .service-block.reverse {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
    }

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

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

    .benefits-grid,
    .additional-resources {
        flex-direction: column;
    }

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