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

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background: rgba(255, 255, 255, 0.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

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

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

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

.hero-offset-content {
    width: 45%;
    padding: 80px 6% 80px 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
}

.hero-title-large {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 35px;
}

.hero-image-diagonal {
    position: absolute;
    right: -10%;
    top: -5%;
    width: 60%;
    height: 110%;
    background-size: cover;
    background-position: center;
    transform: skewX(-6deg);
    box-shadow: -20px 0 40px rgba(0,0,0,0.1);
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.intro-offset {
    display: flex;
    padding: 100px 6%;
    gap: 60px;
    align-items: flex-start;
}

.intro-block-left {
    width: 55%;
    padding-right: 40px;
}

.intro-block-left h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-block-left p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.intro-stats-right {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 20px;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    color: white;
    transform: translateX(30px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.95;
}

.services-creative {
    padding: 120px 6% 100px;
    background: #f8f9fa;
}

.section-title-irregular {
    font-size: 44px;
    margin-bottom: 70px;
    padding-left: 15%;
    color: #1a1a1a;
}

.service-asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
}

.service-card-offset {
    width: calc(50% - 25px);
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
}

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

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

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

.service-card-4 {
    margin-top: 40px;
}

.service-card-5 {
    margin-top: -50px;
}

.service-card-6 {
    margin-top: 20px;
}

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

.service-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin: 20px 0;
}

.btn-select-service {
    background: #1abc9c;
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: #16a085;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 188, 156, 0.4);
}

.form-section-diagonal {
    padding: 100px 6%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.form-container-irregular {
    max-width: 600px;
    margin-left: 10%;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-container-irregular h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro {
    color: #666;
    margin-bottom: 35px;
    font-size: 16px;
}

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

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background: #f8f9fa;
    color: #6c757d;
}

.btn-submit {
    padding: 16px 40px;
    background: #3498db;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.trust-section-overlap {
    display: flex;
    padding: 100px 6%;
    gap: 60px;
    align-items: center;
}

.trust-content-offset {
    width: 55%;
}

.trust-content-offset h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.trust-content-offset p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.trust-content-offset a {
    color: #3498db;
    text-decoration: none;
}

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

.trust-image-right {
    width: 45%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transform: translateY(-30px);
}

.cta-irregular {
    padding: 120px 6%;
    background: #1a1a1a;
}

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

.cta-content-asymmetric h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content-asymmetric p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

.footer-asymmetric {
    background: #2c3e50;
    color: white;
    padding: 60px 6% 20px;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #3498db;
}

.footer-column a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-column p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}

.footer-references {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-references h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #3498db;
}

.footer-references p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-disclaimer {
    margin-top: 30px;
    padding: 25px;
    background: rgba(0,0,0,0.2);
    border-radius: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 25px 6%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

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

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

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

.btn-cookie-accept {
    background: #1abc9c;
    color: white;
}

.btn-cookie-accept:hover {
    background: #16a085;
}

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

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

.page-hero-minimal {
    padding: 100px 6% 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-hero-minimal h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.hero-subtitle-services {
    font-size: 20px;
    color: #666;
    margin-top: 15px;
}

.about-asymmetric {
    display: flex;
    padding: 80px 6%;
    gap: 70px;
    align-items: flex-start;
}

.about-text-offset {
    width: 50%;
    padding-top: 40px;
}

.about-text-offset h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-text-offset p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-image-diagonal {
    width: 50%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transform: translateY(-60px) rotate(2deg);
}

.values-overlap {
    padding: 100px 6%;
    background: #f8f9fa;
}

.values-overlap h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

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

.value-card {
    width: calc(33.333% - 30px);
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.value-card:nth-child(1) {
    transform: translateY(-20px);
}

.value-card:nth-child(3) {
    transform: translateY(20px);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #3498db;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

.team-section-creative {
    padding: 100px 6%;
}

.team-intro-offset {
    max-width: 700px;
    margin-bottom: 60px;
    margin-left: 8%;
}

.team-intro-offset h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.team-intro-offset p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.team-image-feature {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    margin-left: 5%;
    width: 90%;
}

.philosophy-split {
    padding: 100px 6%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.philosophy-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.philosophy-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-detailed {
    padding: 80px 6%;
}

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

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-features {
    margin: 25px 0;
    padding-left: 20px;
}

.service-features li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin: 25px 0;
}

.service-detail-image {
    width: 50%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-split {
    display: flex;
    min-height: 600px;
}

.contact-info-asymmetric {
    width: 50%;
    padding: 80px 6%;
    background: #f8f9fa;
}

.contact-info-asymmetric h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.contact-detail h3 {
    font-size: 20px;
    color: #3498db;
    margin-bottom: 10px;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-visual {
    width: 50%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.thanks-section {
    padding: 120px 6%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #1abc9c;
    color: white;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content-centered h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-service {
    font-size: 20px;
    font-weight: 600;
    color: #3498db;
    margin: 25px 0;
}

.thanks-info {
    font-size: 15px;
    color: #777;
    margin-bottom: 40px;
}

.legal-page {
    padding: 60px 6% 80px;
    background: #f8f9fa;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

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

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

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

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

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

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

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

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

    .hero-image-diagonal {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
        transform: none;
    }

    .intro-offset,
    .trust-section-overlap,
    .about-asymmetric,
    .service-detail-asymmetric,
    .contact-split {
        flex-direction: column;
    }

    .intro-block-left,
    .intro-stats-right,
    .trust-content-offset,
    .trust-image-right,
    .about-text-offset,
    .about-image-diagonal,
    .service-detail-content,
    .service-detail-image,
    .contact-info-asymmetric,
    .contact-visual {
        width: 100%;
    }

    .service-card-offset {
        width: 100%;
        margin-top: 0 !important;
    }

    .value-card {
        width: 100%;
        transform: none !important;
    }

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

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

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

    .hero-title-large {
        font-size: 36px;
    }

    .section-title-irregular {
        padding-left: 0;
        font-size: 32px;
    }

    .form-container-irregular {
        margin-left: 0;
    }
}