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

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

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

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

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

.cookie-content a {
    color: #ffd700;
    text-decoration: underline;
}

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

.btn-accept, .btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4a90e2;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #357abd;
}

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

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

.nav-asymmetric {
    background-color: #ffffff;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.nav-links a:hover {
    color: #4a90e2;
}

.ad-label {
    font-size: 0.85rem;
    color: #666;
    padding: 0.4rem 0.8rem;
    background-color: #f0f0f0;
    border-radius: 4px;
}

.hero-offset {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    min-height: 600px;
}

.hero-content-left {
    flex: 1;
    padding-right: 3rem;
}

.hero-content-left h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-intro {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74,144,226,0.3);
}

.hero-image-right {
    flex: 1;
    position: relative;
    margin-top: -3rem;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    object-fit: cover;
    background-color: #e0e0e0;
}

.intro-overlap {
    max-width: 900px;
    margin: -5rem auto 6rem auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.intro-box {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    margin-left: 8rem;
}

.intro-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.intro-box p {
    margin-bottom: 1rem;
    color: #4a4a4a;
    font-size: 1.1rem;
}

.visual-break {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.visual-container {
    flex: 1;
    position: relative;
    margin-left: -5rem;
}

.visual-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
    object-fit: cover;
    background-color: #d0d0d0;
}

.visual-text-offset {
    flex: 1;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 8px;
    margin-top: 4rem;
}

.visual-text-offset h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.visual-text-offset p {
    font-size: 1.1rem;
    color: #4a4a4a;
}

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

.section-header-right {
    max-width: 700px;
    margin-left: auto;
    margin-bottom: 4rem;
    text-align: right;
}

.section-header-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.section-header-right p {
    font-size: 1.1rem;
    color: #666;
}

.services-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

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

.service-offset-1 {
    margin-left: 0;
}

.service-offset-2 {
    margin-left: 8rem;
}

.service-offset-3 {
    margin-left: 3rem;
}

.service-offset-4 {
    margin-left: 10rem;
}

.service-offset-5 {
    margin-left: 5rem;
}

.service-image {
    flex: 0 0 350px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.btn-select-service {
    padding: 0.9rem 1.8rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #4a90e2;
    transform: translateX(5px);
}

.form-section-overlap {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    position: relative;
}

.form-container {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    margin-right: 6rem;
}

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

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.form-intro p {
    color: #666;
    font-size: 1.1rem;
}

.registration-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: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section {
    background-color: #f8f8f8;
    padding: 6rem 2rem;
    margin: 8rem 0;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c2c2c;
}

.testimonials-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonials-asymmetric blockquote {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border-left: 4px solid #4a90e2;
}

.testimonial-1 {
    margin-left: 0;
}

.testimonial-2 {
    margin-left: 6rem;
}

.testimonial-3 {
    margin-left: 3rem;
}

.testimonials-asymmetric p {
    font-size: 1.1rem;
    color: #2c2c2c;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonials-asymmetric cite {
    font-style: normal;
    color: #666;
    font-weight: 600;
}

.footer-asymmetric {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 4rem 2rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

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

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

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cccccc;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
}

.thanks-container {
    max-width: 800px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.thanks-container p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.thanks-service-info {
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

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

.page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.page-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.page-content p {
    margin-bottom: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.page-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

.contact-info {
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-info h2 {
    margin-top: 0;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        margin-top: 2rem;
    }

    .hero-content-left {
        padding-right: 0;
    }

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

    .hero-image-right {
        margin-top: 2rem;
        width: 100%;
    }

    .intro-box {
        margin-left: 0;
    }

    .visual-break {
        flex-direction: column;
    }

    .visual-container {
        margin-left: 0;
    }

    .visual-text-offset {
        margin-top: 0;
    }

    .service-card {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 250px;
    }

    .service-offset-1,
    .service-offset-2,
    .service-offset-3,
    .service-offset-4,
    .service-offset-5 {
        margin-left: 0;
    }

    .form-container {
        margin-right: 0;
    }

    .testimonial-1,
    .testimonial-2,
    .testimonial-3 {
        margin-left: 0;
    }

    .footer-content {
        flex-direction: column;
    }
}

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

    .nav-links {
        gap: 1rem;
    }

    .hero-content-left h1 {
        font-size: 2rem;
    }

    .section-header-right {
        text-align: left;
    }

    .cookie-content {
        flex-direction: column;
    }
}