* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #4a8fb0;
    --accent-color: #e86a33;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --bg-dark: #333333;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
}

.ad-disclosure {
    background: #fffbf0;
    border-bottom: 1px solid #e8d7a0;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #6b5d3f;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    flex: 0 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-main a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-main a:hover {
    color: var(--primary-color);
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    padding: 60px 5%;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef3 100%);
    position: relative;
    align-items: center;
}

.hero-content-offset {
    flex: 0 0 48%;
    padding-right: 50px;
    position: relative;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-content-offset p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.cta-primary {
    display: inline-block;
    padding: 14px 35px;
    background: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -40px;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.intro-offset {
    padding: 80px 5%;
    background: var(--bg-light);
}

.intro-narrow {
    max-width: 720px;
    margin: 0 0 0 8%;
}

.intro-narrow h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.intro-narrow p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.75;
}

.services-grid-irregular {
    padding: 90px 5%;
    background: var(--bg-gray);
    position: relative;
}

.section-title-side {
    max-width: 500px;
    margin-bottom: 50px;
    padding-left: 60px;
}

.section-title-side h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-title-side p {
    font-size: 1.1rem;
    color: #666;
}

.service-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 0 0 calc(50% - 15px);
    background: var(--bg-light);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

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

.card-offset-1 {
    margin-top: 0;
}

.card-offset-2 {
    margin-top: 60px;
}

.card-offset-3 {
    margin-top: 30px;
}

.card-offset-4 {
    margin-top: 90px;
}

.card-offset-5 {
    margin-top: 45px;
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--bg-gray);
}

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

.service-card h3 {
    font-size: 1.4rem;
    margin: 20px 25px 15px;
    color: var(--primary-color);
}

.service-card p {
    margin: 0 25px 20px;
    color: #555;
    line-height: 1.6;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 15px 25px;
}

.service-select {
    display: block;
    width: calc(100% - 50px);
    margin: 20px 25px 25px;
    padding: 12px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.service-select:hover {
    background: var(--secondary-color);
}

.form-section-creative {
    padding: 80px 5%;
    background: var(--primary-color);
    position: relative;
}

.form-container-offset {
    max-width: 600px;
    margin-left: 15%;
    background: var(--bg-light);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.form-container-offset h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--accent-color);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #d15a28;
}

.trust-section {
    padding: 90px 5%;
    background: var(--bg-light);
}

.trust-content-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-text {
    flex: 0 0 48%;
}

.trust-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.trust-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.75;
}

.trust-image {
    flex: 1;
}

.trust-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.main-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 5% 30px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: var(--text-light);
}

.footer-section p {
    color: #c0c0c0;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

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

.footer-section ul li a:hover {
    color: var(--text-light);
}

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

.footer-disclaimer p {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    padding: 25px 5%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    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: 30px;
}

.cookie-content p {
    color: var(--text-light);
    flex: 1;
}

.cookie-content a {
    color: var(--secondary-color);
}

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

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

.btn-accept {
    background: var(--accent-color);
    color: var(--text-light);
}

.btn-accept:hover {
    background: #d15a28;
}

.btn-reject {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

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

.page-hero-small {
    padding: 80px 5% 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.page-hero-small h1 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.page-hero-small p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-content-asymmetric {
    padding: 80px 5%;
    background: var(--bg-light);
}

.about-main-text {
    max-width: 750px;
    margin-bottom: 60px;
    padding-left: 10%;
}

.about-main-text h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-main-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.75;
}

.about-image-offset {
    width: 70%;
    margin: 60px 0 60px auto;
}

.about-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.about-secondary-text {
    max-width: 720px;
    margin: 0 auto 80px;
}

.about-secondary-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-secondary-text p {
    font-size: 1.05rem;
    margin-bottom: 18px;
    line-height: 1.7;
}

.about-values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    flex: 0 0 calc(50% - 15px);
    padding: 30px;
    background: var(--bg-gray);
    border-radius: 6px;
}

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-item p {
    color: #555;
    line-height: 1.6;
}

.services-detailed {
    padding: 60px 5%;
    background: var(--bg-light);
}

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

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

.service-detail-image {
    flex: 0 0 45%;
    border-radius: 6px;
    overflow: hidden;
    background: var(--bg-gray);
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-detail-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-detail-content > p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

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

.service-detail-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.cta-section-services {
    padding: 70px 5%;
    background: var(--bg-gray);
    text-align: center;
}

.cta-section-services h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.cta-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: var(--secondary-color);
}

.contact-layout-split {
    display: flex;
    gap: 60px;
    padding: 80px 5%;
    background: var(--bg-light);
}

.contact-info-box {
    flex: 0 0 40%;
}

.contact-info-box h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.contact-note {
    padding: 20px;
    background: var(--bg-gray);
    border-radius: 6px;
    margin-top: 30px;
}

.contact-note p {
    color: #666;
    font-size: 0.95rem;
}

.contact-cta-box {
    flex: 1;
}

.contact-cta-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-cta-box p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.btn-contact-form {
    display: inline-block;
    padding: 14px 35px;
    background: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    margin-bottom: 40px;
}

.btn-contact-form:hover {
    background: #d15a28;
}

.contact-image-inset {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
}

.contact-image-inset img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.thanks-section {
    display: flex;
    gap: 60px;
    padding: 80px 5%;
    background: var(--bg-light);
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.thanks-details {
    padding: 20px;
    background: var(--bg-gray);
    border-radius: 6px;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-next-steps ol {
    margin-bottom: 40px;
    padding-left: 25px;
}

.thanks-next-steps ol li {
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 1.05rem;
}

.thanks-actions {
    display: flex;
    gap: 15px;
}

.btn-primary {
    padding: 14px 30px;
    background: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #d15a28;
}

.btn-secondary {
    padding: 14px 30px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.thanks-image {
    flex: 0 0 40%;
}

.thanks-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.legal-page {
    padding: 60px 5% 80px;
    background: var(--bg-light);
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-date {
    color: #888;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.75;
}

.legal-content ul {
    margin: 15px 0 20px 25px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-gray);
    font-weight: 600;
    color: var(--primary-color);
}

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

    .hero-content-offset {
        flex: 1;
        padding-right: 0;
        margin-bottom: 40px;
    }

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

    .hero-image-overlap {
        width: 100%;
        margin-top: 0;
    }

    .service-card {
        flex: 0 0 100%;
    }

    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .card-offset-5 {
        margin-top: 0;
    }

    .trust-content-split {
        flex-direction: column;
    }

    .trust-text {
        flex: 1;
    }

    .service-detail-card {
        flex-direction: column !important;
    }

    .service-detail-image {
        flex: 1;
        width: 100%;
    }

    .contact-layout-split {
        flex-direction: column;
    }

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

    .thanks-section {
        flex-direction: column;
    }

    .thanks-image {
        flex: 1;
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-main {
        gap: 15px;
    }

    .nav-main a {
        font-size: 0.9rem;
    }

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

    .intro-narrow {
        margin: 0;
    }

    .section-title-side {
        padding-left: 0;
    }

    .form-container-offset {
        margin-left: 0;
        padding: 35px;
    }

    .about-main-text {
        padding-left: 0;
    }

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

    .about-values-grid {
        flex-direction: column;
    }

    .value-item {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
}