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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2a2a2a;
    background: #fafafa;
}

.ad-disclosure {
    background: #1a1a1a;
    color: #e0e0e0;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 34px;
    z-index: 999;
}

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #2c5447;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 42px;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c5447;
}

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 38px;
    max-width: 580px;
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: #2c5447;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

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

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #2c5447;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #2c5447;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

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

.split-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: #f5f5f5;
}

.split-content h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.split-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.split-content .cta-secondary {
    margin-top: 20px;
    align-self: flex-start;
}

.services-showcase {
    background: #ffffff;
    padding: 100px 60px;
}

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

.section-header h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.section-header p {
    font-size: 18px;
    color: #5a5a5a;
    line-height: 1.6;
}

.service-grid-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-full {
    background: #fafafa;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-card-inner {
    display: flex;
    min-height: 400px;
}

.service-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.service-details {
    flex: 1;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid #d5d5d5;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5447;
}

.service-selector {
    padding: 12px 20px;
    font-size: 15px;
    border: 2px solid #2c5447;
    border-radius: 6px;
    background: #ffffff;
    color: #2c5447;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-selector:hover {
    background: #2c5447;
    color: #ffffff;
}

.form-section {
    background: #f5f5f5;
    padding: 100px 60px;
}

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

.form-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.form-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.form-wrapper {
    flex: 1;
    background: #ffffff;
    padding: 50px 45px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #d5d5d5;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5447;
}

.form-submit {
    background: #2c5447;
    color: #ffffff;
    padding: 16px 36px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-submit:hover {
    background: #1f3d33;
}

.disclaimer-section {
    background: #ebebeb;
    padding: 60px 80px;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #5a5a5a;
    text-align: center;
}

.main-footer {
    background: #2a2a2a;
    color: #d0d0d0;
    padding: 70px 60px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

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

.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 24px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    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;
    font-size: 15px;
    line-height: 1.6;
    color: #d0d0d0;
}

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

.cookie-btn {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #2c5447;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-btn.reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.cookie-link {
    color: #9fc5b8;
    font-size: 14px;
    text-decoration: underline;
}

.cookie-link:hover {
    color: #bfddd4;
}

.page-hero {
    background: #2c5447;
    padding: 100px 60px;
    text-align: center;
}

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

.page-hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -1px;
}

.page-hero-content p {
    font-size: 19px;
    line-height: 1.6;
    color: #c5ddd4;
}

.content-section {
    background: #ffffff;
    padding: 100px 60px;
}

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

.content-wrapper h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.methodology-phase {
    margin-bottom: 50px;
}

.methodology-phase h3 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #2c5447;
    font-weight: 700;
}

.methodology-phase p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.team-section {
    background: #f5f5f5;
    padding: 100px 60px;
}

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

.team-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 24px;
}

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

.service-detail-block {
    background: #ffffff;
    margin-bottom: 0;
}

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

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

.service-detail-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.service-detail-content h3 {
    font-size: 22px;
    line-height: 1.3;
    margin: 32px 0 16px;
    color: #2c5447;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5447;
    font-weight: 700;
    font-size: 18px;
}

.service-pricing-large {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 2px solid #e5e5e5;
}

.price-amount {
    font-size: 40px;
    font-weight: 700;
    color: #2c5447;
    display: block;
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: #6a6a6a;
    font-style: italic;
}

.cta-section-full {
    background: #2c5447;
    padding: 100px 60px;
}

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

.cta-content-centered h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.cta-content-centered p {
    font-size: 18px;
    line-height: 1.6;
    color: #c5ddd4;
    margin-bottom: 32px;
}

.cta-primary-large {
    display: inline-block;
    background: #ffffff;
    color: #2c5447;
    padding: 18px 42px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.contact-split-section {
    display: flex;
    min-height: 700px;
}

.contact-info-panel {
    flex: 1;
    padding: 80px 60px;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-panel h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.contact-detail-group {
    margin-bottom: 36px;
}

.contact-detail-group h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c5447;
    font-weight: 700;
}

.contact-detail-group p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.contact-visual-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.additional-contact-info {
    background: #ffffff;
    padding: 100px 60px;
}

.info-blocks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.info-block {
    flex: 1;
}

.info-block h3 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #2c5447;
    font-weight: 700;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.thanks-section {
    background: #ffffff;
    padding: 120px 60px;
    min-height: 70vh;
}

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

.thanks-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c5447;
    font-weight: 700;
    letter-spacing: -1px;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.thanks-details {
    background: #f5f5f5;
    padding: 40px 50px;
    margin: 40px 0;
    border-radius: 8px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-service-reference {
    background: #e8f3ef;
    padding: 30px 40px;
    margin: 30px 0;
    border-radius: 8px;
    border-left: 4px solid #2c5447;
    text-align: left;
}

.thanks-service-reference h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c5447;
    font-weight: 700;
}

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

.legal-page {
    background: #ffffff;
    padding: 80px 60px;
}

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

.legal-content h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.legal-updated {
    font-size: 14px;
    color: #6a6a6a;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 28px;
    line-height: 1.3;
    margin: 40px 0 20px;
    color: #2c5447;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    line-height: 1.3;
    margin: 28px 0 14px;
    color: #3d5a4f;
    font-weight: 700;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.legal-content a {
    color: #2c5447;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1f3d33;
}

.legal-list {
    margin: 20px 0 20px 30px;
}

.legal-list li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 10px;
}

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

.cookies-table thead {
    background: #f5f5f5;
}

.cookies-table th {
    padding: 14px 16px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: #2a2a2a;
    border-bottom: 2px solid #d5d5d5;
}

.cookies-table td {
    padding: 12px 16px;
    font-size: 15px;
    color: #4a4a4a;
    border-bottom: 1px solid #e5e5e5;
}

.cookies-table tbody tr:hover {
    background: #fafafa;
}

@media (max-width: 768px) {
    .hero-split,
    .split-section,
    .service-card-inner,
    .form-container-split,
    .contact-split-section,
    .service-detail-split,
    .info-blocks {
        flex-direction: column;
    }

    .split-section.reverse,
    .service-card-full.reverse .service-card-inner,
    .service-detail-block.reverse .service-detail-split {
        flex-direction: column;
    }

    .hero-content,
    .split-content,
    .service-details,
    .form-intro,
    .form-wrapper,
    .contact-info-panel,
    .service-detail-content {
        padding: 50px 30px;
    }

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

    .split-content h2,
    .form-intro h2,
    .contact-info-panel h2,
    .section-header h2,
    .cta-content-centered h2,
    .service-detail-content h2 {
        font-size: 28px;
    }

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

    .nav-links {
        gap: 20px;
    }

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

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

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }

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

    .cookies-table {
        font-size: 13px;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 10px 12px;
    }
}