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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-primary: #2d3436;
    --text-secondary: #636e72;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dfe6e9;
    --transition: all 0.3s ease;
}

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

.ad-notice {
    background-color: var(--accent-color);
    color: var(--text-light);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
}

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

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--highlight-color);
}

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 28px;
    font-weight: 800;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 580px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--highlight-color);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 4px;
    transition: var(--transition);
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #d63651;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.insight-section {
    padding: 120px 64px;
    background-color: var(--bg-white);
}

.insight-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.insight-visual {
    flex: 1;
    background-color: var(--bg-light);
}

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

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.insight-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

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

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

.services-intro p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

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

.service-visual {
    flex: 1;
    background-color: var(--bg-light);
}

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

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

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

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 28px;
    flex-grow: 1;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.service-duration {
    font-size: 15px;
    color: var(--text-secondary);
}

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

.service-select {
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: var(--text-light);
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
}

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

.approach-split {
    display: flex;
    background-color: var(--bg-white);
}

.approach-text {
    flex: 1;
    padding: 100px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-text h2 {
    font-size: 40px;
    margin-bottom: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.approach-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.link-inline {
    color: var(--highlight-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    margin-top: 16px;
    display: inline-block;
    transition: var(--transition);
}

.link-inline:hover {
    text-decoration: underline;
}

.approach-visual {
    flex: 1;
    background-color: var(--bg-light);
}

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

.contact-form-section {
    padding: 120px 64px;
    background-color: var(--bg-light);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
}

.form-intro {
    font-size: 18px;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.6;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

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

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--highlight-color);
    color: var(--text-light);
    border: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: #d63651;
}

.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 64px 64px 32px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    padding: 24px;
    display: none;
    z-index: 2000;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-accept {
    background-color: var(--accent-color);
    color: var(--text-light);
}

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

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

.btn-reject:hover {
    border-color: var(--text-secondary);
}

.cookie-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.cookie-link:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split,
    .insight-container,
    .service-card,
    .approach-split {
        flex-direction: column;
    }

    .hero-content,
    .insight-text,
    .approach-text,
    .service-content {
        padding: 64px 32px;
    }

    .services-preview,
    .contact-form-section {
        padding: 80px 32px;
    }

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

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

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

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

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

    .hero-lead {
        font-size: 17px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}