* {
    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.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

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

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.main-nav a:hover,
.main-nav a.active {
    color: #1a1a1a;
}

.ad-disclosure {
    padding: 6px 14px;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #ffffff;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 99;
}

.mobile-menu a {
    padding: 12px 0;
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu a.active {
    color: #1a1a1a;
}

.ad-disclosure-mobile {
    padding: 12px 0;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.mobile-menu.active {
    display: flex;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: #f8f9fa;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #e8e8e8;
}

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

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

.cta-primary:hover {
    background: #333333;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 15px;
}

.cta-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.split-section {
    display: flex;
    align-items: stretch;
}

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

.split-image-left,
.split-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #e8e8e8;
}

.split-image-left img,
.split-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content-right,
.split-content-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content-right h2,
.split-content-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.3;
}

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

.services-preview {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #e8e8e8;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    font-weight: 700;
}

.service-card p {
    padding: 0 24px;
    color: #4a4a4a;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card .price {
    display: block;
    padding: 20px 24px;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.trust-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.trust-item {
    flex: 1;
    min-width: 250px;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.trust-item p {
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.7;
}

.consultation-section {
    padding: 100px 0;
    background: #1a1a1a;
    color: #ffffff;
}

.consultation-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.consultation-info {
    flex: 1;
}

.consultation-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.consultation-info p {
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 1.7;
    color: #d0d0d0;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #d0d0d0;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #ffffff;
}

.consultation-form {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 15px;
    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: #1a1a1a;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #333333;
}

.site-footer {
    background: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

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

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

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

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

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

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    margin-bottom: 20px;
}

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

.footer-bottom {
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    padding: 24px;
    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;
    color: #4a4a4a;
}

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

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

.btn-accept {
    background: #1a1a1a;
    color: #ffffff;
}

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

.btn-reject {
    background: #f0f0f0;
    color: #1a1a1a;
}

.btn-reject:hover {
    background: #e0e0e0;
}

.page-hero {
    padding: 80px 0 60px;
    background: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-hero p {
    font-size: 20px;
    color: #4a4a4a;
}

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

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

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

.content-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.content-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background: #e8e8e8;
    object-fit: cover;
}

.expertise-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.expertise-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.expertise-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.expertise-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.expertise-card p {
    color: #4a4a4a;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.values-image,
.values-content {
    flex: 1;
}

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

.values-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.sectors-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.sectors-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.sectors-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.sector-item {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.sector-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.sector-item p {
    color: #4a4a4a;
    font-size: 15px;
    line-height: 1.6;
}

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

.commitment-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    font-weight: 700;
    text-align: center;
}

.commitment-section p {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
    text-align: center;
}

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

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

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

.service-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #e8e8e8;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.service-info ul {
    margin-bottom: 30px;
    padding-left: 0;
    list-style: none;
}

.service-info ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #4a4a4a;
}

.service-info ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 20px;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
}

.consultation-cta {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

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

.consultation-cta p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 32px;
}

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

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-details > p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.contact-map {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #e8e8e8;
}

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

.response-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.response-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.response-section p {
    max-width: 800px;
    margin: 0 auto 16px;
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
    text-align: center;
}

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

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.confirmation-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.confirmation-box h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.next-steps {
    list-style: none;
    padding-left: 0;
}

.next-steps li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #1a1a1a;
}

.service-confirmation {
    margin-bottom: 30px;
    font-size: 17px;
}

.service-confirmation strong {
    color: #1a1a1a;
}

.thanks-note {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

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

.legal-page .container {
    max-width: 900px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 12px;
    font-weight: 700;
}

.effective-date {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

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

.legal-page ul li {
    margin-bottom: 8px;
    color: #4a4a4a;
    line-height: 1.6;
}

.legal-page a {
    color: #1a1a1a;
    text-decoration: underline;
}

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

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

.cookies-table th {
    padding: 12px;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid #d0d0d0;
}

.cookies-table td {
    padding: 12px;
    border-bottom: 1px solid #e8e8e8;
    color: #4a4a4a;
}

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

    .hamburger {
        display: flex;
    }

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

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

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

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

    .split-section,
    .split-section.reverse {
        flex-direction: column;
    }

    .split-content-right,
    .split-content-left {
        padding: 60px 30px;
    }

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

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

    .consultation-form {
        padding: 30px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .split-layout,
    .reverse-split {
        flex-direction: column;
    }

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

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

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

    .hero-text p {
        font-size: 16px;
    }

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

    .services-preview h2,
    .trust-section h2,
    .consultation-info h2,
    .expertise-section h2,
    .sectors-section h2,
    .commitment-section h2,
    .consultation-cta h2 {
        font-size: 32px;
    }

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

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