:root {
    --color-primary: #2a3f5f;
    --color-primary-dark: #1a2f4f;
    --color-primary-light: #3a5f8f;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-background: #ffffff;
    --color-background-alt: #f5f7fa;
    --color-border: #e0e4e8;
    --color-white: #ffffff;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    color: var(--color-primary-dark);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-primary-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition);
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

.header {
    position: sticky;
    top: 0;
    background-color: var(--color-white);
    box-shadow: var(--shadow-soft);
    z-index: 1000;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

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

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

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

.nav-menu a {
    font-weight: 500;
    color: var(--color-text);
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary-dark);
    transition: all var(--transition);
}

.hero {
    background-color: var(--color-background-alt);
}

.split-section {
    padding: 0;
}

.split-content {
    display: flex;
    min-height: 500px;
}

.split-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}

.split-text h1 {
    margin-bottom: 1.5rem;
}

.split-text h2 {
    margin-bottom: 1rem;
}

.split-text p {
    color: var(--color-text-light);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.benefits-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.benefit-card {
    flex: 1;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

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

.services-preview h2 {
    text-align: center;
}

.section-intro {
    text-align: center;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-item {
    display: flex;
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

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

.service-image {
    width: 40%;
    min-height: 280px;
}

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

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

.service-info h3 {
    margin-bottom: 1rem;
}

.service-info p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

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

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

.testimonial p {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial cite {
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
}

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

.page-hero h1 {
    margin-bottom: 1rem;
}

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

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

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

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary-light);
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.value-item h3 {
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--color-text-light);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step {
    padding-left: 24px;
    border-left: 3px solid var(--color-primary);
}

.step-label {
    display: inline-block;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

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

.experience-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.experience-item {
    text-align: center;
}

.experience-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.experience-label {
    color: var(--color-text-light);
}

.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--color-background-alt);
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.services-full {
    padding: 60px 0;
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-content {
    display: flex;
    gap: 0;
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.service-detail-card.reversed .service-detail-content {
    flex-direction: row-reverse;
}

.service-detail-text {
    flex: 1;
    padding: 48px;
}

.service-detail-text h2 {
    margin-bottom: 1rem;
}

.service-detail-text > p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--color-text);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.service-detail-image {
    width: 45%;
    min-height: 400px;
}

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

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

.price-label {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.price-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
}

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

.order-section h2 {
    text-align: center;
}

.service-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: var(--font-primary);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    transition: border-color var(--transition);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.service-form .btn {
    width: 100%;
}

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

.contact-grid {
    display: flex;
    gap: 60px;
}

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

.contact-info-block h2 {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.contact-item p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.contact-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    margin-bottom: 0.75rem;
    color: var(--color-primary-dark);
}

.faq-item p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    margin-bottom: 1rem;
}

.selected-service {
    background-color: var(--color-background-alt);
    padding: 16px 24px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.thanks-content > p {
    color: var(--color-text-light);
}

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

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.next-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

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

.legal-article {
    max-width: 800px;
    margin: 0 auto;
}

.legal-article h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-article h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-article p {
    color: var(--color-text-light);
}

.legal-article ul {
    margin-bottom: 1rem;
    padding-left: 24px;
}

.legal-article li {
    color: var(--color-text-light);
    padding: 4px 0;
    list-style: disc;
}

.legal-update {
    margin-top: 3rem;
    font-style: italic;
    color: var(--color-text-light);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

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

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

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

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

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

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

.disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

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

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

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

.cookie-content p {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

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

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 0.875rem;
}

@media (max-width: 992px) {
    .split-content {
        flex-direction: column;
        min-height: auto;
    }

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

    .split-text {
        padding: 48px 32px;
    }

    .split-image {
        min-height: 300px;
    }

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

    .service-detail-content {
        flex-direction: column;
    }

    .service-detail-card.reversed .service-detail-content {
        flex-direction: column;
    }

    .service-detail-image {
        width: 100%;
        min-height: 300px;
    }

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

    .footer-grid {
        flex-wrap: wrap;
    }

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

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        flex-direction: column;
        gap: 0;
        padding: 16px 0;
        box-shadow: var(--shadow-medium);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 12px 24px;
    }

    .nav-menu a::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .ad-disclosure {
        display: none;
    }

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

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

    .service-image {
        width: 100%;
        min-height: 200px;
    }

    .experience-grid {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .split-text {
        padding: 32px 16px;
    }

    .service-form {
        padding: 24px;
    }

    .service-detail-text {
        padding: 24px;
    }
}
