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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

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

.ad-notice {
    padding: 6px 14px;
    background-color: #ecf0f1;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #7f8c8d;
}

.hero-asymmetric {
    display: flex;
    min-height: 100vh;
    padding-top: 100px;
    position: relative;
}

.hero-content-offset {
    width: 45%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
    position: relative;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a252f;
}

.hero-content-offset p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #5a6c7d;
    max-width: 480px;
}

.hero-image-overlap {
    width: 60%;
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    background-color: #dfe6e9;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 38px;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    border: 2px solid #2c3e50;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

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

.intro-offset {
    display: flex;
    padding: 120px 60px;
    gap: 80px;
    background-color: #ffffff;
}

.intro-narrow {
    width: 50%;
    padding-left: 100px;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a252f;
}

.intro-narrow p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.intro-visual-side {
    width: 40%;
    margin-top: -60px;
    background-color: #ecf0f1;
}

.intro-visual-side img {
    width: 100%;
    height: 100%;
}

.services-staggered {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.section-title-offset {
    font-size: 2.8rem;
    margin-bottom: 60px;
    margin-left: 15%;
    color: #1a252f;
}

.services-irregular-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 60px;
}

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

.service-card-overlap:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card-overlap.card-1 {
    width: calc(55% - 20px);
    margin-left: 0;
}

.service-card-overlap.card-2 {
    width: calc(40% - 20px);
    margin-top: 60px;
}

.service-card-overlap.card-3 {
    width: calc(48% - 20px);
    margin-left: 8%;
}

.service-card-overlap.card-4 {
    width: calc(38% - 20px);
    margin-top: -40px;
}

.service-card-overlap.card-5 {
    width: calc(52% - 20px);
    margin-left: 12%;
}

.service-icon {
    width: 100%;
    height: 220px;
    background-color: #dfe6e9;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
}

.service-card-overlap h3 {
    font-size: 1.5rem;
    margin: 25px 25px 15px 25px;
    color: #1a252f;
}

.service-card-overlap p {
    padding: 0 25px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.price-badge {
    background-color: #ecf0f1;
    padding: 12px 25px;
    margin: 20px 25px;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
}

.select-service {
    margin: 0 25px 25px 25px;
    padding: 14px 0;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.form-section-diagonal {
    padding: 100px 60px;
    background-color: #ffffff;
    position: relative;
}

.form-section-diagonal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background-color: #f8f9fa;
    transform: skewX(-8deg);
    transform-origin: top left;
    z-index: 0;
}

.form-container-offset {
    max-width: 600px;
    margin-left: 25%;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.form-container-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1a252f;
}

.form-container-offset > p {
    margin-bottom: 30px;
    color: #5a6c7d;
}

.service-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background-color: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
}

.submit-btn {
    padding: 16px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.trust-indicators {
    padding: 120px 60px;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-content-split {
    display: flex;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-text {
    width: 55%;
}

.trust-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.trust-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #bdc3c7;
}

.trust-stats-vertical {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #3498db;
}

.stat-label {
    font-size: 1rem;
    color: #ecf0f1;
}

.cta-angular {
    padding: 100px 60px;
    background-color: #ecf0f1;
    position: relative;
    overflow: hidden;
}

.cta-content-skewed {
    max-width: 700px;
    margin-left: 15%;
    text-align: left;
}

.cta-content-skewed h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.cta-content-skewed p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #5a6c7d;
}

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

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

.footer-brand-section {
    width: 30%;
}

.footer-brand-section h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.footer-brand-section p {
    color: #95a5a6;
    line-height: 1.6;
}

.footer-links-section,
.footer-legal-section,
.footer-contact-section {
    width: 20%;
}

.footer-links-section h4,
.footer-legal-section h4,
.footer-contact-section h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.footer-links-section li,
.footer-legal-section li {
    margin-bottom: 10px;
}

.footer-links-section a,
.footer-legal-section a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links-section a:hover,
.footer-legal-section a:hover {
    color: #ffffff;
}

.footer-contact-section p {
    color: #95a5a6;
    margin-bottom: 8px;
}

.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: #95a5a6;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #7f8c8d;
}

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

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.cookie-btn.accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

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

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

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

.cookie-link:hover {
    text-decoration: underline;
}

.page-header-diagonal {
    padding: 150px 60px 80px 60px;
    background-color: #2c3e50;
    color: #ffffff;
    position: relative;
}

.page-header-diagonal::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #2c3e50;
    transform: skewY(-2deg);
    transform-origin: top left;
}

.page-header-diagonal h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-header-diagonal p {
    font-size: 1.2rem;
    color: #bdc3c7;
    position: relative;
    z-index: 1;
}

.about-content-offset {
    display: flex;
    padding: 120px 60px;
    gap: 80px;
    background-color: #ffffff;
}

.about-text-primary {
    width: 55%;
}

.about-text-primary h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a252f;
}

.about-text-primary p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.about-image-overlap {
    width: 40%;
    margin-top: 80px;
    background-color: #ecf0f1;
}

.about-image-overlap img {
    width: 100%;
    height: 100%;
}

.methodology-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.methodology-section h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    color: #1a252f;
}

.methodology-cards-staggered {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.method-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 33.333%;
}

.method-card:nth-child(2) {
    margin-top: 60px;
}

.method-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1a252f;
}

.method-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.values-asymmetric {
    padding: 100px 60px;
    background-color: #ffffff;
}

.values-content {
    max-width: 700px;
    margin-left: 20%;
}

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a252f;
}

.values-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.services-detailed {
    padding: 80px 60px;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-detail-content {
    width: 55%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-detail-content p {
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.service-detail-content li {
    margin-bottom: 10px;
    color: #5a6c7d;
}

.service-price {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-block;
}

.service-detail-image {
    width: 45%;
    background-color: #dfe6e9;
}

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

.services-cta {
    text-align: center;
    padding: 80px 60px;
    background-color: #ecf0f1;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a252f;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #5a6c7d;
}

.contact-layout-offset {
    display: flex;
    gap: 80px;
    padding: 100px 60px;
    background-color: #ffffff;
}

.contact-info-primary {
    width: 60%;
    padding-left: 60px;
}

.contact-info-primary h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.contact-info-primary > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #5a6c7d;
}

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

.contact-detail-block h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-detail-block p {
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-email {
    font-weight: 600;
    color: #2c3e50;
}

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 10px;
}

.contact-additional {
    width: 35%;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    align-self: flex-start;
    margin-top: 80px;
}

.contact-additional h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1a252f;
}

.contact-additional p {
    margin-bottom: 25px;
    color: #5a6c7d;
}

.thanks-page-content {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 60px 80px 60px;
    background-color: #f8f9fa;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a252f;
}

.thanks-container p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    font-weight: 600;
    color: #2c3e50;
}

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

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

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #1a252f;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #34495e;
}

.legal-container p {
    margin-bottom: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 40px;
}

.legal-container li {
    margin-bottom: 10px;
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .hero-content-offset {
        width: 100%;
        padding: 60px 30px;
    }

    .hero-image-overlap {
        width: 100%;
        position: relative;
        height: 400px;
    }

    .intro-offset,
    .about-content-offset,
    .contact-layout-offset {
        flex-direction: column;
    }

    .intro-narrow,
    .intro-visual-side,
    .about-text-primary,
    .about-image-overlap,
    .contact-info-primary,
    .contact-additional {
        width: 100%;
        padding-left: 0;
        margin-top: 0;
    }

    .services-irregular-grid {
        flex-direction: column;
        padding: 0;
    }

    .service-card-overlap {
        width: 100%;
        margin: 0;
    }

    .trust-content-split,
    .methodology-cards-staggered {
        flex-direction: column;
    }

    .trust-text,
    .trust-stats-vertical,
    .method-card {
        width: 100%;
    }

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

    .service-detail-content,
    .service-detail-image {
        width: 100%;
    }

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

    .footer-brand-section,
    .footer-links-section,
    .footer-legal-section,
    .footer-contact-section {
        width: 100%;
    }

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