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

.ad-disclosure {
    background-color: #f0f0f0;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #222;
}

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

.nav-links a {
    color: #222;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0066cc;
}

.hero-asymmetric {
    display: flex;
    min-height: 600px;
    position: relative;
}

.hero-content-offset {
    width: 45%;
    padding: 80px 40px 80px 60px;
    display: flex;
    align-items: center;
    background-color: #fff;
}

.hero-text-block h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #111;
}

.hero-text-block p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #444;
}

.hero-image-offset {
    width: 55%;
    position: relative;
    overflow: hidden;
}

.hero-image-offset img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #0052a3;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #0066cc;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #0066cc;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #0066cc;
    color: #fff;
}

.intro-asymmetric {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    background-color: #f9f9f9;
}

.intro-left {
    width: 40%;
}

.intro-left h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
}

.intro-right {
    width: 60%;
}

.intro-right p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.problem-section {
    padding: 80px 60px;
    background-color: #fff;
}

.problem-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f5f5f5;
    border-left: 4px solid #0066cc;
}

.problem-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #111;
}

.problem-card p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #444;
}

.services-creative {
    padding: 100px 60px;
    background-color: #f9f9f9;
}

.services-header-offset {
    max-width: 600px;
    margin-bottom: 60px;
}

.services-header-offset h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.services-header-offset p {
    font-size: 20px;
    color: #444;
}

.services-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-offset {
    display: flex;
    gap: 30px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
}

.service-card-offset:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    width: 40%;
    overflow: hidden;
    border-radius: 6px;
}

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

.service-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #444;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

.select-service {
    padding: 12px 30px;
    background-color: #0066cc;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #0052a3;
}

.form-section-asymmetric {
    padding: 100px 60px;
    background-color: #fff;
}

.form-container-offset {
    max-width: 600px;
    margin-left: 100px;
}

.form-container-offset h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.form-container-offset p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #444;
}

.contact-form-creative {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}

.form-group input,
.form-group select {
    padding: 14px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s;
}

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

.submit-btn {
    padding: 16px 40px;
    background-color: #0066cc;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #0052a3;
}

.trust-section {
    padding: 80px 60px;
    background-color: #f5f5f5;
}

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

.trust-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.trust-content p {
    font-size: 20px;
    color: #444;
}

.footer-asymmetric {
    background-color: #222;
    color: #fff;
    padding: 60px 60px 20px 60px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-col p {
    font-size: 14px;
    color: #aaa;
}

.footer-col a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #222;
    color: #fff;
    padding: 20px 40px;
    display: none;
    z-index: 1000;
}

.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 {
    font-size: 14px;
    margin: 0;
}

.cookie-content a {
    color: #4da6ff;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-accept {
    background-color: #0066cc;
    color: #fff;
}

.cookie-accept:hover {
    opacity: 0.9;
}

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

.cookie-reject:hover {
    opacity: 0.8;
}

.about-header-asymmetric {
    display: flex;
    padding: 100px 60px;
    gap: 60px;
    background-color: #fff;
}

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

.about-text-offset h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

.about-text-offset p {
    font-size: 20px;
    color: #444;
}

.about-image-block {
    width: 45%;
    overflow: hidden;
    border-radius: 8px;
}

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

.story-section {
    padding: 100px 60px;
    background-color: #f9f9f9;
}

.story-container {
    max-width: 800px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

.story-container p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.values-asymmetric {
    padding: 100px 60px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-card-left,
.value-card-right {
    padding: 40px;
    background-color: #f5f5f5;
}

.value-card-left {
    max-width: 650px;
    margin-right: auto;
}

.value-card-right {
    max-width: 650px;
    margin-left: auto;
}

.value-card-left h3,
.value-card-right h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.value-card-left p,
.value-card-right p {
    font-size: 16px;
    color: #444;
}

.approach-section {
    padding: 100px 60px;
    background-color: #f9f9f9;
}

.approach-content {
    max-width: 700px;
}

.approach-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

.approach-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.cta-about {
    padding: 100px 60px;
    background-color: #222;
}

.cta-content-offset {
    max-width: 700px;
    margin-left: auto;
}

.cta-content-offset h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.cta-content-offset p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #ddd;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.services-header {
    padding: 100px 60px 60px 60px;
    background-color: #fff;
    text-align: center;
}

.services-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.services-header p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    color: #444;
}

.services-detailed {
    padding: 60px 60px 100px 60px;
    background-color: #fff;
}

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

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

.service-detail-image {
    width: 50%;
    overflow: hidden;
    border-radius: 8px;
}

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

.service-detail-content {
    width: 50%;
}

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #444;
}

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

.service-detail-content li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #444;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #0066cc;
    margin: 30px 0 20px 0;
}

.contact-header {
    padding: 100px 60px 60px 60px;
    background-color: #fff;
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.contact-header p {
    font-size: 20px;
    color: #444;
}

.contact-info-section {
    padding: 60px 60px 100px 60px;
    background-color: #f9f9f9;
}

.contact-info-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.contact-block {
    flex: 1;
    min-width: 250px;
}

.contact-block h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.contact-block h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.contact-block p {
    font-size: 16px;
    color: #444;
}

.contact-note {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 6px;
}

.contact-note p {
    font-size: 16px;
    color: #444;
}

.contact-note a {
    color: #0066cc;
}

.thanks-section {
    padding: 150px 60px;
    background-color: #f9f9f9;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

.thanks-content p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #444;
}

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

.legal-page {
    padding: 80px 60px 100px 60px;
    background-color: #fff;
}

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

.legal-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #111;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #111;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #111;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #444;
    line-height: 1.7;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #444;
    line-height: 1.7;
}

.legal-content a {
    color: #0066cc;
    text-decoration: none;
}

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

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

    .hero-content-offset,
    .hero-image-offset {
        width: 100%;
    }

    .intro-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
    }

    .intro-left,
    .intro-right {
        width: 100%;
    }

    .service-card-offset,
    .service-card-offset:nth-child(even) {
        flex-direction: column;
    }

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

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

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

    .about-header-asymmetric {
        flex-direction: column;
    }

    .about-text-offset,
    .about-image-block {
        width: 100%;
    }

    .nav-asymmetric {
        flex-direction: column;
        gap: 20px;
    }

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