* {
    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: #333;
    background-color: #fff;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #1a1a1a;
    color: #fff;
    flex-wrap: wrap;
    position: relative;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00d4ff;
}

.nav-ad-notice {
    font-size: 0.75rem;
    color: #999;
    padding: 0.3rem 0.8rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 3px;
    order: 3;
    margin-top: 0.5rem;
    flex-basis: 100%;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00d4ff;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 0 0 45%;
    padding: 8rem 5% 4rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    z-index: 2;
}

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

.hero-content-offset p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #00d4ff;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-hero:hover {
    background-color: #00b8e6;
}

.hero-image-diagonal {
    flex: 1;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60%;
    background-color: #e8e8e8;
}

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

.intro-offset {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
    background-color: #fff;
}

.intro-text-block {
    flex: 1;
    padding-left: 10%;
}

.intro-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-text-block p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.intro-image-small {
    flex: 0 0 35%;
    background-color: #e8e8e8;
}

.intro-image-small img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.benefits-stacked {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.benefit-card-left,
.benefit-card-right {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.benefit-card-right {
    flex-direction: row-reverse;
}

.benefit-card-left img,
.benefit-card-right img {
    flex: 0 0 45%;
    width: 45%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e8e8e8;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-text p {
    font-size: 1.1rem;
    color: #555;
}

.services-grid {
    padding: 6rem 5%;
    background-color: #fff;
}

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

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: #555;
}

.service-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 2rem);
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s;
    background-color: #e8e8e8;
}

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

.service-card-offset {
    margin-top: 3rem;
}

.service-card-elevated {
    margin-top: -2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-price {
    font-size: 2rem;
    font-weight: bold;
    color: #00d4ff;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #333;
}

.form-section-diagonal {
    display: flex;
    padding: 6rem 5%;
    background-color: #1a1a1a;
    color: #fff;
    position: relative;
}

.form-container {
    flex: 0 0 55%;
    padding-right: 4rem;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-intro {
    margin-bottom: 2rem;
    color: #ccc;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #555;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #2a2a2a;
    color: #fff;
}

.form-group input[readonly] {
    background-color: #444;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #00d4ff;
    color: #1a1a1a;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #00b8e6;
}

.form-image-overlay {
    flex: 1;
    position: relative;
    background-color: #e8e8e8;
}

.form-image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.trust-section {
    padding: 6rem 5%;
    background-color: #f8f9fa;
}

.trust-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.trust-points-irregular {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-point {
    flex: 0 0 calc(33.333% - 2rem);
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    background-color: #e8e8e8;
}

.trust-point-offset {
    margin-top: 3rem;
}

.trust-point h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.trust-point p {
    font-size: 1.1rem;
    color: #555;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.footer-col p {
    color: #ccc;
}

.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #00d4ff;
}

.footer-disclaimer {
    padding: 2rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 4px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #999;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #00d4ff;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-reject {
    background-color: #555;
    color: #fff;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.about-hero {
    padding: 8rem 5% 4rem;
    background-color: #f8f9fa;
}

.about-content-asymmetric {
    max-width: 800px;
    padding-left: 10%;
}

.about-content-asymmetric h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.about-content-asymmetric p {
    font-size: 1.3rem;
    color: #555;
}

.about-story {
    padding: 4rem 5%;
    background-color: #fff;
}

.story-block-left,
.story-block-right {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.story-block-right {
    flex-direction: row-reverse;
}

.story-block-left img,
.story-block-right img {
    flex: 0 0 45%;
    width: 45%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e8e8e8;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.story-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.values-section {
    padding: 6rem 5%;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.values-grid-irregular {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 0 0 calc(33.333% - 2rem);
    padding: 2.5rem;
    background-color: #fff;
    border-radius: 8px;
    background-color: #e8e8e8;
}

.value-offset {
    margin-top: 2rem;
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-card p {
    font-size: 1.1rem;
    color: #555;
}

.cta-about {
    padding: 6rem 5%;
    text-align: center;
    background-color: #1a1a1a;
    color: #fff;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #00d4ff;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #00b8e6;
}

.services-header {
    padding: 6rem 5% 4rem;
    background-color: #f8f9fa;
    text-align: center;
}

.services-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-header p {
    font-size: 1.3rem;
    color: #555;
}

.services-detailed {
    padding: 4rem 5%;
    background-color: #fff;
}

.service-detail-block {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-detail-content ul {
    list-style-position: inside;
    margin-bottom: 2rem;
}

.service-detail-content li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00d4ff;
    margin-bottom: 1.5rem;
}

.cta-service {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-service:hover {
    background-color: #333;
}

.service-detail-image {
    flex: 0 0 45%;
    background-color: #e8e8e8;
}

.service-detail-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.process-section {
    padding: 6rem 5%;
    background-color: #f8f9fa;
}

.process-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    flex: 0 0 calc(25% - 2rem);
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    background-color: #e8e8e8;
}

.process-step-offset {
    margin-top: 2rem;
}

.step-number {
    font-size: 3rem;
    font-weight: bold;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.process-step p {
    font-size: 1rem;
    color: #555;
}

.cta-services {
    padding: 6rem 5%;
    text-align: center;
    background-color: #1a1a1a;
    color: #fff;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #00d4ff;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-button-large:hover {
    background-color: #00b8e6;
}

.contact-header {
    padding: 6rem 5% 4rem;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-header p {
    font-size: 1.3rem;
    color: #555;
}

.contact-content {
    padding: 4rem 5%;
    background-color: #fff;
    display: flex;
    gap: 4rem;
}

.contact-info-asymmetric {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    background-color: #e8e8e8;
}

.contact-block-offset {
    margin-left: 10%;
}

.contact-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.email-static {
    color: #555;
    font-weight: normal;
}

.contact-image {
    flex: 0 0 40%;
    background-color: #e8e8e8;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.contact-cta {
    padding: 6rem 5%;
    text-align: center;
    background-color: #1a1a1a;
    color: #fff;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.thanks-section {
    padding: 8rem 5%;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
}

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

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

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #555;
}

.thanks-icon {
    margin: 3rem 0;
}

.thanks-next-steps {
    text-align: left;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    background-color: #e8e8e8;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-next-steps ol {
    padding-left: 1.5rem;
}

.thanks-next-steps li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.legal-page {
    padding: 4rem 10%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    line-height: 1.8;
}

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

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

.legal-page h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.legal-page p {
    margin-bottom: 1rem;
    color: #555;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-page a {
    color: #00d4ff;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        flex: 1;
        clip-path: none;
    }

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

    .intro-offset,
    .benefit-card-left,
    .benefit-card-right,
    .service-detail-block,
    .contact-content {
        flex-direction: column;
    }

    .service-card,
    .trust-point,
    .value-card,
    .process-step {
        flex: 0 0 100%;
    }

    .form-section-diagonal {
        flex-direction: column;
    }

    .form-container {
        flex: 1;
        padding-right: 0;
    }

    .form-image-overlay {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-content-offset h1 {
        font-size: 2.5rem;
    }

    .services-grid h2,
    .trust-section h2,
    .values-section h2 {
        font-size: 2rem;
    }
}