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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    padding: 120px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 800;
    color: #1a252f;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #546e7a;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    background: #2c3e50;
    color: #ffffff;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #1a252f;
}

.intro-section {
    padding: 100px 40px;
    background: #ffffff;
}

.intro-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: 24px;
    line-height: 1.8;
    color: #34495e;
    text-align: center;
}

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

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

.expertise-visual {
    flex: 1;
    overflow: hidden;
}

.expertise-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.expertise-content {
    flex: 1;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expertise-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a252f;
}

.expertise-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

.impact-numbers {
    padding: 100px 40px;
    background: #2c3e50;
}

.numbers-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 60px;
}

.stat-card {
    text-align: center;
    color: #ffffff;
}

.stat-number {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #3498db;
}

.stat-label {
    font-size: 18px;
    line-height: 1.4;
}

.services-showcase {
    padding: 120px 40px;
    background: #f8f9fa;
}

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

.services-intro h2 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a252f;
}

.services-intro p {
    font-size: 20px;
    color: #546e7a;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    background: #ffffff;
    border: 1px solid #e1e8ed;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    height: 240px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 26px;
    margin: 30px 30px 20px;
    font-weight: 700;
    color: #1a252f;
}

.service-card p {
    padding: 0 30px;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
}

.service-price {
    padding: 0 30px;
    font-size: 32px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 25px;
}

.select-service {
    display: block;
    width: calc(100% - 60px);
    margin: 0 30px 30px;
    padding: 15px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #1a252f;
}

.contact-form-section {
    padding: 120px 40px;
    background: #ffffff;
}

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 0;
}

.form-content {
    flex: 1;
    padding: 80px;
    background: #f8f9fa;
}

.form-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a252f;
}

.form-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #546e7a;
}

.form-visual {
    flex: 1;
    overflow: hidden;
}

.form-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 1px solid #d1d8dd;
    font-size: 16px;
    font-family: inherit;
    background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.selected-service-display {
    padding: 20px;
    background: #e8f4f8;
    border-left: 4px solid #3498db;
    margin-top: 10px;
}

.cta-submit {
    padding: 18px 40px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 15px;
}

.cta-submit:hover {
    background: #1a252f;
}

.testimonials {
    padding: 100px 40px;
    background: #f8f9fa;
}

.testimonials h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 70px;
    font-weight: 700;
    color: #1a252f;
}

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

.testimonial-card {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-left: 4px solid #3498db;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

.site-footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 80px 40px 30px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #b0bec5;
}

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

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

.footer-col ul li a {
    text-decoration: none;
    color: #b0bec5;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-left: 3px solid #e74c3c;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    color: #b0bec5;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    padding: 25px 40px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    color: #ecf0f1;
    font-size: 15px;
    flex: 1;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-btn.accept {
    background: #27ae60;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #229954;
}

.cookie-btn.reject {
    background: #e74c3c;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #c0392b;
}

.page-header {
    padding: 100px 40px 80px;
    background: #f8f9fa;
    text-align: center;
}

.page-header h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 800;
    color: #1a252f;
}

.subtitle {
    font-size: 22px;
    color: #546e7a;
}

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

.about-content {
    flex: 1;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a252f;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

.about-visual {
    flex: 1;
    overflow: hidden;
}

.about-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 70px;
    font-weight: 700;
    color: #1a252f;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.value-block {
    flex: 1 1 calc(50% - 25px);
    min-width: 320px;
}

.value-block h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.value-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
}

.team-approach {
    padding: 100px 40px;
    background: #ffffff;
}

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a252f;
}

.approach-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

.approach-image {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

.approach-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.history-block {
    padding: 100px 40px;
    background: #f8f9fa;
}

.history-content {
    max-width: 900px;
    margin: 0 auto;
}

.history-content h2 {
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #1a252f;
}

.history-content p {
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #546e7a;
}

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

.service-detail-block {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    min-height: 500px;
}

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

.service-detail-content {
    flex: 1;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.service-detail-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a252f;
}

.price-tag {
    font-size: 36px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #546e7a;
}

.service-detail-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    font-weight: 700;
    color: #2c3e50;
}

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

.service-detail-content ul li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #546e7a;
}

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

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

.cta-service {
    display: inline-block;
    background: #2c3e50;
    color: #ffffff;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-service:hover {
    background: #1a252f;
}

.process-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

.process-section h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 70px;
    font-weight: 700;
    color: #1a252f;
}

.process-steps {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

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

.step-number {
    font-size: 56px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2c3e50;
}

.process-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
}

.contact-page-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    gap: 80px;
}

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

.contact-info-block h2 {
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: 700;
    color: #1a252f;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
}

.contact-map-placeholder {
    flex: 1;
    height: 600px;
    overflow: hidden;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-additional {
    padding: 100px 40px;
    background: #f8f9fa;
}

.contact-additional h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 70px;
    font-weight: 700;
    color: #1a252f;
}

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

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

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
}

.thanks-container {
    padding: 120px 40px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a252f;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 40px;
}

.thanks-selected-service {
    background: #e8f4f8;
    padding: 25px;
    margin-bottom: 50px;
    border-left: 4px solid #3498db;
    display: none;
}

.thanks-selected-service p {
    font-size: 18px;
    color: #2c3e50;
}

.thanks-next-steps {
    text-align: left;
    background: #f8f9fa;
    padding: 40px;
    margin-bottom: 50px;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #2c3e50;
}

.thanks-next-steps ol {
    padding-left: 25px;
}

.thanks-next-steps ol li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #546e7a;
}

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

.cta-secondary {
    display: inline-block;
    background: #ffffff;
    color: #2c3e50;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #2c3e50;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #2c3e50;
    color: #ffffff;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1a252f;
}

.legal-updated {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 32px;
    margin: 50px 0 20px;
    font-weight: 700;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    font-weight: 700;
    color: #34495e;
}

.legal-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

.legal-content ul {
    margin-bottom: 25px;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #546e7a;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: #2980b9;
}

@media (max-width: 1024px) {
    .hero-split,
    .expertise-split,
    .form-container-split,
    .about-split,
    .approach-container,
    .service-detail-block,
    .contact-page-content {
        flex-direction: column;
    }

    .expertise-split.reverse,
    .service-detail-block.reverse {
        flex-direction: column;
    }

    .hero-content,
    .expertise-content,
    .form-content,
    .about-content,
    .service-detail-content {
        padding: 60px 40px;
    }

    .hero-visual,
    .expertise-visual,
    .form-visual,
    .about-visual,
    .service-detail-image,
    .contact-map-placeholder,
    .approach-image {
        min-height: 400px;
    }

    .numbers-container,
    .testimonial-grid,
    .process-steps,
    .footer-content {
        flex-direction: column;
    }

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

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

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

    .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-content h1,
    .page-header h1 {
        font-size: 36px;
    }

    .expertise-content h2,
    .form-content h2,
    .about-content h2,
    .service-detail-content h2 {
        font-size: 32px;
    }

    .services-intro h2,
    .testimonials h2,
    .values-section h2,
    .process-section h2,
    .contact-additional h2,
    .history-content h2,
    .thanks-content h1 {
        font-size: 36px;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .nav-menu {
        font-size: 14px;
    }

    .stat-number {
        font-size: 48px;
    }
}