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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a8fa8;
    --accent-color: #e8a445;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-primary,
.btn-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 10px 24px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.btn-secondary,
.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
    padding: 10px 24px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-secondary:hover,
.btn-reject:hover {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

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

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

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: var(--bg-light);
}

.hero-text-content {
    max-width: 600px;
}

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

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: var(--text-light);
}

.btn-hero {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s;
}

.btn-hero:hover {
    transform: translateY(-2px);
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
}

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

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

.split-content {
    flex: 1;
}

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

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

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

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

.section-title-center {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.value-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.value-card {
    flex: 1;
    text-align: center;
}

.value-icon {
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-white);
}

.value-icon img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

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

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

.services-overview {
    padding: 80px 0;
}

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

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

.services-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-4px);
}

.service-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

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

.btn-select-service {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
}

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

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: var(--bg-light);
}

.btn-submit {
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background-color: var(--text-light);
    cursor: not-allowed;
    transform: none;
}

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

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.testimonial-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-light);
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

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

.disclaimer-box {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff8e1;
    padding: 32px;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.disclaimer-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

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

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

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

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

.page-header {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 0 60px;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

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

.content-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.content-page h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.content-page ul,
.content-page ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

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

.contact-info-box {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    margin: 40px 0;
}

.contact-info-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info-box p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    padding: 60px 20px;
}

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

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

.thanks-content .btn-primary {
    display: inline-block;
    text-decoration: none;
    padding: 16px 40px;
}

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

    .hero-left {
        padding: 40px 20px;
    }

    .hero-right {
        min-height: 400px;
    }

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

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

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

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

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

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

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

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

.page-hero {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 100px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

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

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 24px;
}

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

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

.btn-service-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.services-comparison {
    background-color: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.services-comparison h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.comparison-intro {
    font-size: 18px;
    margin-bottom: 32px;
    color: var(--text-light);
}

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

.split-image-left {
    flex: 1;
}

.split-image-left img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.split-content-right {
    flex: 1;
}

.split-content-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

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

.values-layout {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.value-block {
    flex: 1;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

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

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

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.approach-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.approach-step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 80px;
}

.approach-step-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

.expertise-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.expertise-text {
    flex: 1;
}

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

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

.expertise-image {
    flex: 1;
}

.expertise-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

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

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 32px;
}

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

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

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.contact-info-block p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--text-light);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.contact-detail-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.contact-note {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 4px;
}

.contact-note a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.contact-image-block img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

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

.directions-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.directions-content {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.direction-item {
    flex: 1;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
}

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

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

.thanks-section {
    padding: 100px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

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

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

.selected-service-info {
    margin: 40px 0;
}

.selected-service-box {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    display: inline-block;
    min-width: 400px;
}

.selected-service-box h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.selected-service-box .service-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.selected-service-box .service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
}

.next-steps {
    margin: 60px 0;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.step-item {
    flex: 1;
    max-width: 300px;
    text-align: left;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

@media (max-width: 1024px) {
    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

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

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

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

    .directions-content {
        flex-direction: column;
    }

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