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

:root {
    --primary-color: #2C5F7F;
    --secondary-color: #4A90B5;
    --accent-color: #E67E22;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E1E8ED;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

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

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

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

.btn-cookie.reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

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

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

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

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

.main-nav {
    display: flex;
    gap: 30px;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
}

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

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

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

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

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

.btn-primary:hover {
    background-color: #1E4A64;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 127, 0.3);
}

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

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

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

.container-medium {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
}

.container-full {
    width: 100%;
    padding: 0;
}

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

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

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.content-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.content-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #E8EEF2;
}

.intro-section {
    background-color: var(--bg-white);
}

.features-section {
    background-color: var(--bg-light);
}

.features-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.features-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.feature-card:hover {
    transform: translateY(-4px);
}

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

.feature-card h3 {
    padding: 20px 24px 12px;
    font-size: 22px;
    color: var(--text-dark);
}

.feature-card p {
    padding: 0 24px 24px;
    font-size: 16px;
    color: var(--text-light);
}

.services-preview {
    background-color: var(--bg-white);
}

.services-preview h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.services-preview .split-content {
    margin-bottom: 60px;
}

.price-tag {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 0;
}

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.link-arrow::after {
    content: ' →';
}

.testimonial-section {
    background-color: var(--primary-color);
    color: white;
}

.testimonial {
    text-align: center;
    padding: 40px;
}

.testimonial p {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial cite {
    font-size: 16px;
    font-style: normal;
    color: rgba(255, 255, 255, 0.9);
}

.form-section {
    background-color: var(--bg-light);
}

.form-wrapper {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.form-wrapper > p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    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(--primary-color);
}

.disclaimer-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 40px;
}

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

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

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.footer-column p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-hero p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.story-section {
    background-color: var(--bg-white);
}

.values-section {
    background-color: var(--bg-light);
}

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

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.value-item p {
    font-size: 17px;
    color: var(--text-light);
}

.team-section {
    background-color: var(--bg-white);
}

.team-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.cta-section {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-primary {
    background-color: var(--accent-color);
}

.cta-section .btn-primary:hover {
    background-color: #D35400;
}

.services-list {
    background-color: var(--bg-white);
}

.service-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-content > p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
}

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

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

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #E8EEF2;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

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

.service-price .price-note {
    font-size: 15px;
    color: var(--text-light);
}

.contact-section {
    background-color: var(--bg-white);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

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

.map-section {
    background-color: var(--bg-light);
}

.map-placeholder {
    height: 400px;
    background-color: #E8EEF2;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.legal-page {
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

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

.legal-page a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

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

.thanks-section {
    background-color: var(--bg-light);
    min-height: 400px;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

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

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

.thanks-service {
    margin: 32px 0;
    padding: 20px;
    background-color: var(--bg-white);
    border-radius: 8px;
    display: inline-block;
}

.thanks-service p {
    margin: 0;
    font-size: 16px;
}

.thanks-service strong {
    color: var(--primary-color);
}

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

.next-steps {
    background-color: var(--bg-white);
}

.next-steps h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

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

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

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

    .hero-left {
        max-width: 100%;
    }

    .hero-right {
        min-height: 400px;
    }

    .split-content,
    .split-content.reverse {
        flex-direction: column;
    }

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

    .features-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 16px;
    }

    .main-nav {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

    .content-block h2 {
        font-size: 28px;
    }

    .container-wide,
    .container-medium,
    .container-narrow {
        padding: 40px 20px;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .cookie-content {
        flex-direction: column;
    }

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

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