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

:root {
    --primary-color: #2c5f7a;
    --secondary-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dfe6e9;
    --success-color: #27ae60;
}

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);
}

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

.ad-notice {
    background-color: #f1f3f4;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #5f6368;
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: lowercase;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 550px;
    align-items: center;
}

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

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

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

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

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

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

.btn-primary:hover {
    background-color: #234d61;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
    cursor: pointer;
    font-size: 15px;
}

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

.intro-section {
    padding: 80px 0;
}

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

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.split-image {
    flex: 1;
    background-color: #e8eaed;
}

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

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

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

.services-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    max-width: 360px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

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

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

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0 24px 16px;
    flex-grow: 1;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 24px 20px;
}

.service-card .btn-secondary {
    margin: 0 24px 24px;
    text-align: center;
}

.process-section {
    padding: 80px 0;
}

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

.process-list li {
    padding: 14px 0 14px 32px;
    position: relative;
    font-size: 17px;
    color: var(--text-light);
}

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

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4a5f 100%);
    text-align: center;
    color: var(--bg-white);
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 18px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.benefits-section {
    padding: 80px 0;
}

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

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

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

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

.form-wrapper {
    max-width: 640px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

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

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

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

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

.form-group textarea {
    resize: vertical;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #fef9f5;
}

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    text-align: justify;
    max-width: 960px;
    margin: 0 auto;
}

.footer {
    background-color: #1a1a1a;
    color: #b0b0b0;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 24px;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: var(--bg-white);
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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: 24px;
    flex-wrap: wrap;
}

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

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    background-color: var(--success-color);
    color: var(--bg-white);
}

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

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

.btn-cookie.btn-secondary:hover {
    background-color: var(--bg-white);
    color: #2c3e50;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4a5f 100%);
    color: var(--bg-white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.service-detail {
    padding: 80px 0;
}

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

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

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

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.price-info {
    display: inline-block;
    background-color: #e8f5e9;
    color: var(--success-color);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    margin: 24px 0;
    font-size: 18px;
}

.about-intro {
    padding: 80px 0;
}

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

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--text-dark);
}

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

.experience-section {
    padding: 80px 0;
}

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

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
}

.approach-section p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 880px;
    margin: 0 auto 24px;
}

.commitment-section {
    padding: 80px 0;
}

.cta-about {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4a5f 100%);
    text-align: center;
    color: var(--bg-white);
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 18px;
}

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

.cta-about .btn-primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.cta-about .btn-primary:hover {
    background-color: #f0f0f0;
}

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

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

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

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

.service-area {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.service-area h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
}

.service-area p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 24px;
    text-align: center;
}

.area-list {
    max-width: 600px;
    margin: 32px auto;
}

.area-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    list-style: none;
    justify-content: center;
}

.area-list li {
    font-size: 16px;
    color: var(--text-dark);
    padding-left: 24px;
    position: relative;
}

.area-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.faq-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
}

.faq-item h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

.cta-contact h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-contact p {
    font-size: 17px;
    margin-bottom: 28px;
    color: var(--text-light);
}

.thanks-section {
    padding: 100px 0;
    min-height: 60vh;
}

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

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

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-content > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
    line-height: 1.7;
}

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

.thanks-info h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.thanks-steps {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
}

.thanks-steps li {
    counter-increment: step-counter;
    padding: 12px 0 12px 40px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 8px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.thanks-service-info {
    margin: 32px 0;
}

.selected-service {
    background-color: #e8f5e9;
    color: var(--success-color);
    padding: 16px;
    border-radius: 4px;
    font-size: 17px;
}

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

.thanks-contact {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-light);
}

.thanks-contact p {
    margin-bottom: 8px;
}

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

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

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

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

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

.legal-content ul {
    margin: 16px 0 16px 32px;
}

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

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

.legal-content a:hover {
    text-decoration: none;
}

.legal-content em {
    display: block;
    margin-bottom: 32px;
    color: #999;
    font-size: 15px;
}

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

    .hero-content {
        padding: 40px 30px;
    }

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .benefits-grid,
    .values-grid,
    .faq-grid {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }
}