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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #4a8fb0;
    --accent-color: #7cb8d4;
    --dark-color: #1a3847;
    --light-bg: #f4f8fa;
    --white: #ffffff;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --border-color: #dfe6e9;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

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

.main-nav a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.ad-label {
    font-size: 11px;
    color: var(--text-light);
    background: var(--light-bg);
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.hero-text {
    flex: 1;
}

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

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

.hero-image {
    flex: 1;
    background: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 95, 125, 0.3);
}

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

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

.intro-section,
.about-content,
.expertise-section {
    padding: 80px 0;
}

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

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

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: 700;
}

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

.content-image {
    flex: 1;
    background: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 50px;
    font-weight: 700;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 220px;
    background: var(--border-color);
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin: 25px 25px 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin: 0 25px 20px;
    font-size: 15px;
    line-height: 1.6;
}

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

.service-card .btn-secondary {
    margin: 0 25px 25px;
    width: calc(100% - 50px);
    text-align: center;
}

.more-services {
    text-align: center;
    margin-top: 40px;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 17px;
}

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

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

.cta-left {
    flex: 1;
    background: var(--border-color);
}

.cta-left img {
    width: 100%;
    height: 100%;
}

.cta-right {
    flex: 1;
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-right h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
}

.cta-right p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-right .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    align-self: flex-start;
}

.cta-right .btn-primary:hover {
    background: var(--light-bg);
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.form-intro {
    color: var(--text-light);
    margin-bottom: 35px;
    font-size: 16px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

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

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

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

.contact-form button[type="submit"] {
    width: 100%;
    margin-top: 15px;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

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

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

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

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.6;
}

.page-header {
    background: var(--light-bg);
    padding: 80px 0 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 20px;
    color: var(--text-light);
}

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

.service-detail {
    margin-bottom: 80px;
}

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

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

.service-detail-image {
    flex: 1;
    background: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-text {
    flex: 1;
}

.service-detail-text h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

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

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

.service-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
    font-size: 16px;
}

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

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

.cta-section h2 {
    font-size: 38px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
}

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

.values-section h2,
.approach-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 50px;
    font-weight: 700;
}

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

.value-card {
    flex: 1;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

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

.approach-steps {
    display: flex;
    gap: 30px;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 25px;
}

.step-item h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

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

.contact-info {
    flex: 1;
}

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

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

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

.contact-image {
    flex: 1;
    background: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

.location-section h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.location-section p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 800px;
}

.location-image {
    background: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    max-width: 100%;
}

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

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

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

.thanks-content h1 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.selected-service-info {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 17px;
    color: var(--text-dark);
}

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

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

.legal-page {
    padding: 60px 0 80px;
}

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

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

.legal-page h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 25px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

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

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

@media (max-width: 968px) {
    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-content,
    .split-content,
    .service-detail-content,
    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

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

    .values-grid,
    .approach-steps {
        flex-direction: column;
    }

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

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

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

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 32px;
    }

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

    .services-preview h2 {
        font-size: 32px;
    }

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