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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #d35400;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
    --error-color: #e74c3c;
}

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

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

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

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

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

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

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

.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

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

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

.hero-left {
    flex: 1;
    min-width: 0;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

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

.hero-left p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    min-width: 0;
    position: relative;
    background-color: #95a5a6;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

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

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

.split-content {
    flex: 1;
    min-width: 0;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-white);
}

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

.split-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.split-content ul {
    margin: 24px 0;
    padding-left: 0;
    list-style: none;
}

.split-content ul li {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
}

.split-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.split-image {
    flex: 1;
    min-width: 0;
    position: relative;
    background-color: #95a5a6;
}

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

.link-inline {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

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

.section-intro p {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 400px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 240px;
    background-color: #95a5a6;
    overflow: hidden;
}

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

.service-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.service-info p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.select-service {
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.services-cta {
    text-align: center;
    margin-top: 60px;
}

.services-cta p {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 24px;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 16px;
    text-align: center;
    font-weight: 700;
}

.form-container > p {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    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: 16px;
    border: 2px 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(--secondary-color);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.btn-submit:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

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

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dark);
    text-align: center;
}

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

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

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
    min-width: 240px;
}

.footer-left h3,
.footer-center h4,
.footer-right h4 {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 700;
}

.footer-left p {
    font-size: 16px;
    line-height: 1.6;
    color: #ecf0f1;
}

.footer-center ul,
.footer-right ul {
    list-style: none;
    padding: 0;
}

.footer-center ul li,
.footer-right ul li {
    margin-bottom: 12px;
}

.footer-center ul li a,
.footer-right ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-center ul li a:hover,
.footer-right ul li a:hover {
    color: var(--secondary-color);
}

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

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

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

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

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

.content-centered {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

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

.principles-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.principle-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

.principle-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.principle-item p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.7;
}

.cta-full {
    padding: 100px 60px;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-full h2 {
    font-size: 42px;
    color: var(--bg-white);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-full p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 36px;
}

.service-detail {
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.service-detail.reverse {
    background-color: var(--bg-light);
}

.detail-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.detail-image {
    flex: 1;
    min-width: 0;
    background-color: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
}

.detail-image img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.detail-content {
    flex: 1;
    min-width: 0;
}

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

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

.feature-list {
    list-style: none;
    padding: 0;
    margin: 28px 0;
}

.feature-list li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 14px;
    padding-left: 32px;
    position: relative;
    line-height: 1.6;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

.price-display {
    font-size: 28px;
    color: var(--secondary-color);
    font-weight: 700;
    margin: 28px 0;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    min-width: 0;
}

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

.info-block {
    margin-bottom: 36px;
}

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

.info-block p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    min-width: 0;
    background-color: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.step-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

.step-number {
    font-size: 42px;
    color: var(--secondary-color);
    font-weight: 800;
    margin-bottom: 16px;
}

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

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

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

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

.map-placeholder {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.thanks-hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

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

.thanks-content > p {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.6;
}

.thanks-details {
    background-color: var(--bg-white);
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

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

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

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps ul li {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
}

.next-steps ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

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

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

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

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

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

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

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

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

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

.legal-content em {
    color: var(--text-light);
}

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

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

    .split-section.reverse {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
        min-width: 0;
    }

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

    .detail-split.reverse {
        flex-direction: column;
    }

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

    .principle-item {
        flex: 1 1 100%;
    }

    .step-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 0 20px;
    }

    .main-nav {
        gap: 20px;
    }

    .hero-left {
        padding: 60px 30px;
    }

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

    .hero-left p {
        font-size: 18px;
    }

    .split-content {
        padding: 60px 30px;
    }

    .split-content h2 {
        font-size: 32px;
    }

    .services-preview {
        padding: 60px 30px;
    }

    .section-intro h2 {
        font-size: 34px;
    }

    .form-section {
        padding: 60px 30px;
    }

    .page-hero {
        padding: 60px 30px;
    }

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

    .content-centered {
        padding: 60px 30px;
    }

    .content-centered h2 {
        font-size: 34px;
    }

    .cta-full {
        padding: 60px 30px;
    }

    .service-detail {
        padding: 60px 30px;
    }

    .contact-split {
        padding: 60px 30px;
    }

    .map-section {
        padding: 60px 30px;
    }

    .thanks-hero {
        padding: 60px 30px;
    }

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

    .main-footer {
        padding: 40px 30px 20px;
    }

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