* {
    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-color: #ffffff;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-disclaimer {
    background-color: #f8f9fa;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    color: #6c757d;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #4a5568;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.values-dual {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.value-block {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

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

.value-text {
    flex: 1;
}

.value-text h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.value-text p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.value-visual {
    flex: 1;
    background-color: #e2e8f0;
}

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

.process-asymmetric {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.process-intro {
    margin-bottom: 3rem;
}

.process-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.process-intro p {
    font-size: 1.1rem;
    color: #4a5568;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    line-height: 1;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.step p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.services-preview {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.services-preview h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.services-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

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

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

.service-card h3 {
    font-size: 1.3rem;
    margin: 1.5rem 1.5rem 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    font-size: 0.95rem;
    margin: 0 1.5rem 1rem;
    color: #4a5568;
    line-height: 1.5;
}

.service-card .price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin: 1rem 1.5rem 1.5rem;
}

.link-cta {
    display: block;
    text-align: center;
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.link-cta:hover {
    color: #2980b9;
}

.form-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.form-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

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

.btn-submit:hover {
    background-color: #2980b9;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-about,
.footer-links,
.footer-contact {
    flex: 1;
}

.footer-about h3,
.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #ffffff;
}

.footer-about p,
.footer-contact p {
    line-height: 1.8;
    color: #bdc3c7;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: #95a5a6;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cookie-accept {
    background-color: #3498db;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #2980b9;
}

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

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

.cookie-link {
    color: #3498db;
    text-decoration: underline;
}

.page-hero {
    max-width: 1200px;
    margin: 4rem auto 3rem;
    padding: 0 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    color: #4a5568;
}

.about-split {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-content {
    flex: 1.2;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.about-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
}

.about-visual {
    flex: 1;
    background-color: #e2e8f0;
}

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

.expertise-area {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.expertise-area h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.expertise-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.expertise-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

.expertise-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.approach-detail {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-text p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.approach-image {
    flex: 1;
    background-color: #e2e8f0;
}

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

.services-detailed {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.service-full {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #4a5568;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-top: 1.5rem;
}

.price-label {
    font-size: 0.95rem;
    color: #6c757d;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
}

.service-image {
    flex: 1;
    background-color: #e2e8f0;
}

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

.cta-services {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.cta-services h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-services p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #2980b9;
}

.contact-layout {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
}

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

.contact-info-primary h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.contact-detail p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background-color: #e2e8f0;
}

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

.contact-note {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-note h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-note p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-note ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.contact-note ul li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.thanks-message {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    background-color: #e2e8f0;
    color: #2c3e50;
}

.btn-secondary:hover {
    background-color: #cbd5e0;
}

.thanks-visual {
    flex: 1;
    background-color: #e2e8f0;
}

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

.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
    font-weight: 600;
}

.legal-page p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.8;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

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

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.cookie-table thead {
    background-color: #f8f9fa;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.cookie-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #4a5568;
}

@media (max-width: 1024px) {
    .hero-split,
    .values-dual .value-block,
    .about-split,
    .approach-detail,
    .service-full,
    .form-container-split,
    .contact-layout,
    .thanks-message {
        flex-direction: column;
    }

    .value-block.reverse {
        flex-direction: column;
    }

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

    .expertise-item {
        flex: 1 1 100%;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}