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

:root {
    --primary: #2c3e50;
    --secondary: #e74c3c;
    --accent: #3498db;
    --light: #ecf0f1;
    --dark: #1a252f;
    --text: #2c3e50;
    --bg: #ffffff;
    --gray: #95a5a6;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    border-bottom: 3px solid var(--secondary);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1600px;
    margin: 0 auto;
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

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

.nav-links a:hover {
    color: var(--secondary);
}

.ad-label {
    background: var(--secondary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-asymmetric {
    margin-top: 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 3rem 5%;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 650px;
    margin-left: 8%;
    z-index: 2;
    position: relative;
}

.hero-content-offset h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--primary);
}

.hero-content-offset p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

.hero-image-offset {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 55%;
    height: 70%;
    background: var(--light);
    overflow: hidden;
    transform: rotate(-3deg);
    box-shadow: -10px 20px 60px rgba(0,0,0,0.15);
}

.hero-image-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(3deg) scale(1.1);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.section-irregular {
    padding: 6rem 5%;
    position: relative;
}

.section-overlay {
    position: relative;
    padding: 5rem 5%;
    background: var(--light);
    margin: 4rem 0;
    overflow: hidden;
}

.section-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 40%;
    height: 100%;
    background: var(--secondary);
    opacity: 0.05;
    transform: skewX(-15deg);
}

.content-offset-left {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.text-block-irregular {
    flex: 1;
    padding-left: 3rem;
}

.text-block-irregular h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.text-block-irregular p {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.image-block-irregular {
    flex: 1;
    position: relative;
}

.image-block-irregular img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 15px 15px 0 var(--accent);
}

.services-asymmetric {
    padding: 6rem 5%;
    background: white;
}

.services-asymmetric h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
    margin-left: 10%;
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 4rem auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card-offset {
    background: white;
    border: 2px solid var(--light);
    padding: 2.5rem;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    position: relative;
    transition: all 0.3s;
}

.service-card-offset:nth-child(odd) {
    transform: translateY(20px);
}

.service-card-offset:hover {
    border-color: var(--secondary);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card-offset h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-card-offset p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    color: var(--secondary);
    font-weight: 700;
    margin: 1.5rem 0;
}

.service-select-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.service-select-btn:hover {
    background: #2980b9;
}

.service-select-btn.selected {
    background: var(--secondary);
}

.form-section-creative {
    padding: 6rem 5%;
    background: var(--dark);
    color: white;
    position: relative;
}

.form-section-creative::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--dark);
    transform: skewY(-2deg);
}

.form-container-offset {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 10%;
}

.form-container-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--light);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255,255,255,0.15);
}

.form-group select option {
    background: var(--dark);
    color: white;
}

.footer-creative {
    background: var(--primary);
    color: white;
    padding: 4rem 5%;
}

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

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

.footer-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.footer-block p,
.footer-block a {
    color: var(--light);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

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

.footer-bottom {
    text-align: center;
    padding: 2rem 5%;
    background: var(--dark);
    color: var(--gray);
}

.page-header-offset {
    margin-top: 80px;
    padding: 5rem 5% 3rem 15%;
    background: var(--light);
    position: relative;
}

.page-header-offset h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.page-content-irregular {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.page-content-irregular h2 {
    font-size: 2rem;
    color: var(--primary);
    margin: 3rem 0 1.5rem;
}

.page-content-irregular p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text);
}

.page-content-irregular ul {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-offset {
    flex: 1;
    background: var(--light);
    padding: 3rem;
    transform: translateY(-50px);
}

.contact-info-offset h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h4 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.contact-detail p {
    color: var(--text);
    line-height: 1.7;
}

.thanks-container {
    margin-top: 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
}

.thanks-box-offset {
    background: var(--light);
    padding: 4rem;
    max-width: 700px;
    text-align: center;
    transform: translateX(-50px);
    border-left: 5px solid var(--secondary);
}

.thanks-box-offset h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.thanks-box-offset p {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 2rem 5%;
    display: none;
    z-index: 9999;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1rem;
}

.cookie-accept {
    background: var(--secondary);
    color: white;
}

.cookie-accept:hover {
    background: #c0392b;
}

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

.cookie-reject:hover {
    background: white;
    color: var(--primary);
}

.disclaimer-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 2rem;
    margin: 3rem 0;
}

.disclaimer-box h3 {
    color: #856404;
    margin-bottom: 1rem;
}

.disclaimer-box p {
    color: #856404;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero-content-offset h1 {
        font-size: 2.5rem;
    }

    .hero-image-offset {
        width: 50%;
        right: 0;
    }

    .content-offset-left {
        flex-direction: column;
    }

    .service-card-offset {
        flex: 1 1 calc(50% - 2rem);
    }

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

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        font-size: 0.9rem;
    }

    .hero-asymmetric {
        flex-direction: column;
        text-align: center;
        padding-top: 5rem;
    }

    .hero-content-offset {
        margin-left: 0;
    }

    .hero-image-offset {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 2rem;
        right: 0;
        transform: rotate(0);
    }

    .service-card-offset {
        flex: 1 1 100%;
    }

    .service-card-offset:nth-child(odd) {
        transform: none;
    }

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