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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c6ba0;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.96);
    color: white;
    padding: 24px;
    z-index: 9999;
    display: none;
}

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

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

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

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-cookie:first-child:hover {
    background: #c29d2f;
}

.btn-cookie:last-child {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

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

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

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

.nav-center {
    display: flex;
    gap: 32px;
}

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

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

.nav-right .ad-label {
    font-size: 12px;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 6px 12px;
    border-radius: 4px;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    max-width: 520px;
}

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

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

.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 4px;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

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

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

.philosophy-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.philosophy-section h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: var(--primary-color);
    font-weight: 700;
}

.lead-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.philosophy-section p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.services-grid {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-header-offset {
    margin-bottom: 60px;
    padding-left: 120px;
}

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

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

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card {
    display: flex;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-height: 340px;
    background-color: #e9ecef;
}

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

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

.service-info h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

.btn-service {
    padding: 12px 28px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.form-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.form-left-content {
    flex: 1;
}

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

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

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-dark);
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.form-right-content {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

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

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

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

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

.trust-split {
    display: flex;
    gap: 80px;
    align-items: center;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

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

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

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

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-columns {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    margin-bottom: 32px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

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

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

.about-intro-split {
    padding: 100px 0;
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.about-left {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-right h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

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

.values-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 60px;
    font-weight: 700;
}

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

.value-card {
    flex: 1;
    min-width: 260px;
    background: var(--bg-white);
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

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

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

.approach-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.approach-section h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 24px;
    text-align: center;
    font-weight: 700;
}

.process-steps {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    min-width: 80px;
}

.step-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

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

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

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

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-content .btn-primary {
    background: var(--accent-color);
    color: var(--text-dark);
}

.cta-content .btn-primary:hover {
    background: #c29d2f;
}

.services-detailed {
    padding: 60px 0 100px;
}

.service-detail-item {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}

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

.service-detail-content {
    flex: 1;
}

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

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

.service-features {
    margin-bottom: 32px;
}

.feature-item {
    margin-bottom: 24px;
}

.feature-item h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

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

.service-pricing-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-top: 32px;
}

.pricing-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
}

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.contact-content {
    padding: 80px 0;
}

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

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

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

.contact-details {
    margin-bottom: 48px;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

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

.contact-note {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
}

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

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

.contact-location-side {
    flex: 1;
}

.location-placeholder {
    background: var(--bg-light);
    padding: 48px;
    border-radius: 8px;
    height: 100%;
}

.location-placeholder h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

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

.location-directions p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.thanks-section {
    padding: 120px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

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

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

.thanks-service {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-service p {
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-next-steps {
    text-align: left;
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

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

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

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

.legal-page {
    padding: 80px 0 100px;
}

.legal-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
}

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

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

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

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

.legal-page ul,
.legal-page ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

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

.legal-date {
    margin-top: 48px;
    font-style: italic;
    color: var(--text-light);
}

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

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

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

.cookie-table td {
    font-size: 15px;
    color: var(--text-light);
}

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

    .nav-center {
        gap: 16px;
        font-size: 14px;
    }

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

    .service-card,
    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .form-split {
        flex-direction: column;
        gap: 48px;
    }

    .trust-split {
        flex-direction: column;
    }

    .footer-columns {
        flex-direction: column;
    }

    .about-intro-split {
        flex-direction: column;
    }

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

    .contact-layout {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 16px;
    }

    .section-header-offset {
        padding-left: 0;
    }
}