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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 37px;
    z-index: 999;
}

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

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

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

.nav-links a:hover {
    color: #27ae60;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

.hero-asymmetric {
    display: flex;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content-offset {
    width: 55%;
    padding: 120px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a252f;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 22px;
    color: #546e7a;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-visual-overlap {
    position: absolute;
    right: -50px;
    top: 80px;
    width: 50%;
    height: 85%;
    z-index: 1;
    transform: rotate(-3deg);
}

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

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    width: fit-content;
}

.cta-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(39,174,96,0.3);
}

.intro-diagonal {
    display: flex;
    padding: 100px 60px;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
    position: relative;
}

.diagonal-block {
    flex: 1.2;
    transform: translateX(-30px);
}

.diagonal-block h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a252f;
    line-height: 1.3;
}

.diagonal-block p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 20px;
}

.visual-card-float {
    flex: 0.8;
    transform: translateY(40px) rotate(2deg);
}

.visual-card-float img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    object-fit: cover;
    background-color: #e9ecef;
}

.services-preview {
    padding: 120px 60px;
    background: linear-gradient(165deg, #ecf0f1 0%, #ffffff 100%);
}

.section-header-irregular {
    margin-bottom: 70px;
    margin-left: 80px;
}

.section-header-irregular h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a252f;
}

.section-header-irregular p {
    font-size: 20px;
    color: #546e7a;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    width: calc(33.333% - 27px);
    min-width: 320px;
    transition: all 0.3s ease;
}

.service-card.offset-top {
    transform: translateY(-25px);
}

.service-card.offset-bottom {
    transform: translateY(25px);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.card-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e9ecef;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .card-image-container img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #1a252f;
}

.service-card p {
    font-size: 16px;
    color: #546e7a;
    margin: 0 25px 20px;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 25px;
}

.select-service-btn {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.trust-block-overlap {
    display: flex;
    padding: 100px 80px;
    gap: 80px;
    align-items: center;
    background-color: #2c3e50;
    color: #ffffff;
    position: relative;
}

.trust-content {
    flex: 1.3;
}

.trust-content h2 {
    font-size: 44px;
    margin-bottom: 30px;
    color: #ffffff;
}

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

.stats-cards-irregular {
    flex: 0.7;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transform: translateX(30px);
}

.stat-card {
    background-color: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

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

.stat-label {
    font-size: 16px;
    color: #ecf0f1;
}

.form-section-offset {
    display: flex;
    padding: 120px 80px;
    gap: 70px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.form-container-creative {
    flex: 1.2;
    transform: translateX(40px);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a252f;
}

.form-header p {
    font-size: 18px;
    color: #546e7a;
}

.main-form {
    background-color: #ffffff;
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-visual-background {
    flex: 0.8;
    position: relative;
    transform: translateY(-40px) rotate(-2deg);
}

.form-visual-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    background-color: #e9ecef;
}

.footer-creative {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 70px 60px 30px;
}

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

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

.footer-col.brand-col {
    flex: 1.5;
}

.footer-col h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #27ae60;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.8;
    color: #bdc3c7;
    margin-bottom: 10px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #27ae60;
}

.footer-disclaimer {
    padding: 30px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 10px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.8;
    color: #95a5a6;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    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: #ecf0f1;
    font-size: 15px;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

.page-hero-minimal {
    padding: 120px 80px 80px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    text-align: left;
}

.page-hero-minimal h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.page-hero-minimal p {
    font-size: 22px;
    color: #ecf0f1;
}

.about-content-asymmetric {
    display: flex;
    padding: 100px 80px;
    gap: 70px;
    align-items: center;
    background-color: #ffffff;
}

.content-block-offset {
    flex: 1.2;
    transform: translateX(-20px);
}

.content-block-offset h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #1a252f;
}

.content-block-offset p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.visual-element-irregular {
    flex: 0.8;
    transform: translateY(30px) rotate(2deg);
}

.visual-element-irregular img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    object-fit: cover;
    background-color: #e9ecef;
}

.values-section-stacked {
    padding: 100px 80px;
    background: linear-gradient(165deg, #f8f9fa 0%, #ffffff 100%);
}

.values-section-stacked h2 {
    font-size: 48px;
    margin-bottom: 60px;
    color: #1a252f;
    text-align: center;
}

.values-grid-creative {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transform: rotate(-1deg);
    transition: all 0.3s ease;
}

.value-item:nth-child(even) {
    transform: rotate(1deg);
}

.value-item:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #27ae60;
}

.value-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.team-approach-diagonal {
    padding: 100px 80px;
    background-color: #2c3e50;
    color: #ffffff;
    transform: skewY(-2deg);
    margin: 80px 0;
}

.approach-text {
    transform: skewY(2deg);
    max-width: 900px;
    margin: 0 auto;
}

.approach-text h2 {
    font-size: 44px;
    margin-bottom: 30px;
    color: #ffffff;
}

.approach-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.commitment-overlap {
    padding: 100px 80px;
    background-color: #ffffff;
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
    transform: translateX(40px);
}

.commitment-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a252f;
}

.commitment-content p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-section-minimal {
    padding: 100px 80px;
    background: linear-gradient(135deg, #ecf0f1 0%, #ffffff 100%);
    text-align: center;
}

.cta-section-minimal h2 {
    font-size: 42px;
    margin-bottom: 35px;
    color: #1a252f;
}

.cta-secondary {
    display: inline-block;
    padding: 18px 45px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.services-detailed-asymmetric {
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.service-detail-block.offset-left {
    transform: translateX(-30px);
}

.service-detail-block.offset-right {
    transform: translateX(30px);
}

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

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a252f;
}

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

.service-features {
    list-style: none;
    margin: 30px 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #2c3e50;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.service-pricing {
    margin: 30px 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-label {
    font-size: 16px;
    color: #546e7a;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

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

.service-detail-visual img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    object-fit: cover;
    background-color: #e9ecef;
}

.contact-cta-irregular {
    padding: 80px 80px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    text-align: center;
    color: #ffffff;
    transform: skewY(-1deg);
}

.contact-cta-irregular h2 {
    font-size: 40px;
    margin-bottom: 20px;
    transform: skewY(1deg);
}

.contact-cta-irregular p {
    font-size: 18px;
    margin-bottom: 35px;
    transform: skewY(1deg);
    color: #ecf0f1;
}

.contact-cta-irregular .cta-secondary {
    transform: skewY(1deg);
    background-color: #ffffff;
    color: #27ae60;
}

.contact-cta-irregular .cta-secondary:hover {
    background-color: #ecf0f1;
}

.contact-layout-asymmetric {
    display: flex;
    padding: 100px 80px;
    gap: 80px;
    background-color: #ffffff;
}

.contact-info-block {
    flex: 1;
    transform: translateX(-20px);
}

.contact-info-block h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a252f;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #27ae60;
}

.contact-item p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
}

.contact-visual-offset {
    flex: 0.8;
    transform: translateY(40px) rotate(-2deg);
}

.contact-visual-offset img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    object-fit: cover;
    background-color: #e9ecef;
}

.location-info-irregular {
    padding: 80px 80px;
    background: linear-gradient(165deg, #f8f9fa 0%, #ffffff 100%);
    max-width: 900px;
    margin: 0 auto;
    transform: translateX(30px);
}

.location-info-irregular h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a252f;
}

.location-info-irregular p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.thanks-page-centered {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 60px;
    background: linear-gradient(135deg, #ecf0f1 0%, #ffffff 100%);
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.btn-primary {
    padding: 16px 35px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 16px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.legal-page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 60px;
    background-color: #ffffff;
}

.legal-page-content h1 {
    font-size: 44px;
    margin-bottom: 15px;
    color: #1a252f;
}

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

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

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

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

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

.legal-page-content a {
    color: #27ae60;
    text-decoration: underline;
}

.legal-page-content a:hover {
    color: #229954;
}

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

    .hero-content-offset {
        width: 100%;
        padding: 80px 40px;
    }

    .hero-content-offset h1 {
        font-size: 42px;
    }

    .hero-visual-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
        transform: rotate(0);
    }

    .intro-diagonal,
    .about-content-asymmetric,
    .contact-layout-asymmetric {
        flex-direction: column;
        padding: 60px 40px;
    }

    .diagonal-block,
    .content-block-offset {
        transform: translateX(0);
    }

    .visual-card-float,
    .visual-element-irregular,
    .contact-visual-offset {
        transform: translateY(0) rotate(0);
    }

    .service-card {
        width: calc(50% - 20px);
    }

    .service-card.offset-top,
    .service-card.offset-bottom {
        transform: translateY(0);
    }

    .trust-block-overlap,
    .form-section-offset {
        flex-direction: column;
        padding: 60px 40px;
    }

    .stats-cards-irregular {
        transform: translateX(0);
        flex-direction: row;
    }

    .form-container-creative {
        transform: translateX(0);
    }

    .form-visual-background {
        transform: translateY(0) rotate(0);
        height: 300px;
    }

    .service-detail-block {
        flex-direction: column;
        margin-bottom: 60px;
    }

    .service-detail-block.offset-left,
    .service-detail-block.offset-right {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content-offset h1 {
        font-size: 36px;
    }

    .hero-content-offset p {
        font-size: 18px;
    }

    .service-card {
        width: 100%;
    }

    .services-grid-asymmetric {
        gap: 30px;
    }

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

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

    .stats-cards-irregular {
        flex-direction: column;
    }

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

    .team-approach-diagonal {
        transform: skewY(0);
        margin: 40px 0;
    }

    .approach-text {
        transform: skewY(0);
    }

    .contact-cta-irregular {
        transform: skewY(0);
    }

    .contact-cta-irregular h2,
    .contact-cta-irregular p,
    .contact-cta-irregular .cta-secondary {
        transform: skewY(0);
    }
}