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

:root {
    --primary-color: #1a3d5c;
    --secondary-color: #2d5f7f;
    --accent-color: #5a8aa8;
    --text-dark: #1f1f1f;
    --text-light: #4a4a4a;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--text-white);
    padding: 20px;
    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: 30px;
}

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

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

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

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

.btn-accept:hover {
    background: #218838;
}

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

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

.site-header {
    background: 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;
    gap: 30px;
}

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

.ad-notice {
    font-size: 11px;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

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

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

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

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

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

.hero-right {
    flex: 1;
    background: var(--accent-color);
    position: relative;
    overflow: hidden;
}

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.cta-primary:hover,
.cta-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-secondary {
    background: var(--accent-color);
}

.trust-indicators {
    padding: 60px 0;
    background: var(--bg-white);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

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

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

.problem-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.problem-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}

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

.content-left,
.content-right {
    flex: 1;
}

.content-left img,
.content-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background: var(--bg-light);
}

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

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

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
}

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

.service-body {
    padding: 30px;
}

.service-body h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

.btn-select-service {
    width: 100%;
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonials-flow {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--text-white);
}

.testimonials-flow h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
}

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

.testimonial-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 8px;
}

.testimonial-item p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    font-size: 14px;
    opacity: 0.9;
}

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

.container-split .insight-content {
    flex: 1.2;
}

.container-split .insight-image {
    flex: 0.8;
}

.insight-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.insight-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background: var(--bg-white);
}

.process-section {
    padding: 100px 0;
    background: var(--bg-white);
}

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

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

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

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

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.site-footer {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-section a {
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

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

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.7;
}

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

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

.email-display {
    font-weight: 600;
    color: var(--text-dark);
}

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

.page-hero h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

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

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

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

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

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

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

.service-detail-content h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

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

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background: var(--bg-light);
}

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

.service-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.about-intro {
    padding: 80px 0;
    background: var(--bg-white);
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background: var(--bg-light);
}

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

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

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

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

.expertise-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

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

.methodology-section > p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 50px;
    text-align: center;
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.method-step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

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

.values-split {
    display: flex;
    gap: 60px;
}

.value-block {
    flex: 1;
}

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

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

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

.background-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

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

.about-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.contact-details {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.contact-block {
    flex: 1;
}

.contact-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.contact-block .note {
    font-size: 14px;
    font-style: italic;
    color: var(--text-light);
    margin-top: 15px;
}

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

.contact-info-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-info-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-map {
    padding: 0;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 61, 92, 0.9);
    color: var(--text-white);
    padding: 30px;
}

.map-overlay p {
    font-size: 16px;
    margin: 0;
}

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

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.thanks-hero {
    padding: 80px 0 40px;
    background: var(--bg-light);
}

.thanks-hero h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    text-align: center;
}

.thanks-details {
    padding: 60px 0;
    background: var(--bg-white);
}

.confirmation-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.confirmation-box h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-item .step-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 50px;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.service-reference {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    border: 2px solid var(--accent-color);
}

.service-reference h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-reference p {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

.thanks-additional {
    padding: 60px 0;
    background: var(--bg-light);
}

.thanks-additional h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.thanks-navigation {
    padding: 60px 0;
    background: var(--bg-white);
}

.thanks-navigation h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-button {
    display: inline-block;
    padding: 14px 28px;
    background: var(--accent-color);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: var(--secondary-color);
}

.legal-content {
    padding: 60px 0;
    background: var(--bg-white);
}

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

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--secondary-color);
}

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

.legal-content ul {
    margin: 15px 0 15px 30px;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table thead {
    background: var(--bg-light);
}

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

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

.cookie-table td {
    font-size: 15px;
    color: var(--text-light);
}

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

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

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

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

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

    .split-content,
    .container-split,
    .service-detail-block,
    .contact-grid,
    .process-grid,
    .testimonial-grid,
    .values-split {
        flex-direction: column;
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .nav-links {
        flex-direction: column;
    }

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