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

:root {
    --primary: #2563eb;
    --secondary: #7c3aed;
    --accent: #f59e0b;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
}

.nav-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.nav-container.active {
    transform: translateX(0);
}

.nav-toggle {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: var(--primary);
    border: none;
    padding: 1rem;
    cursor: pointer;
    z-index: 1001;
    border-radius: 8px;
    color: var(--white);
    font-size: 1.2rem;
}

.nav-brand {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

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

.ad-notice {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    margin-top: auto;
    border-left: 3px solid var(--accent);
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content-wrap {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-text-offset {
    width: 60%;
    margin-left: 8%;
    z-index: 2;
}

.hero-text-offset h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

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

.hero-image-offset {
    position: absolute;
    right: -10%;
    top: 15%;
    width: 45%;
    height: 70%;
    background: var(--light);
}

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

.cta-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

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

.section-offset {
    padding: 6rem 2rem;
    position: relative;
}

.section-asymmetric-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.content-block-left {
    width: 55%;
    padding: 3rem;
    background: var(--light);
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.content-block-right {
    width: 48%;
    padding: 3rem;
    background: var(--white);
    margin-left: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.floating-accent {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.section-text {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.services-irregular {
    padding: 8rem 2rem;
    background: var(--dark);
    color: var(--white);
    position: relative;
}

.services-wrap {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    width: 70%;
    margin-bottom: 4rem;
    margin-left: 15%;
}

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-cards-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.service-card {
    background: rgba(255,255,255,0.05);
    padding: 3rem;
    width: calc(50% - 1.5rem);
    position: relative;
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
}

.service-card:nth-child(odd) {
    margin-left: 5%;
}

.service-card:nth-child(even) {
    margin-left: 10%;
}

.service-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(10px);
}

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

.service-card p {
    color: var(--light);
    margin-bottom: 1.5rem;
}

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

.select-service-btn {
    background: var(--accent);
    color: var(--dark);
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.form-section-creative {
    padding: 8rem 2rem;
    background: var(--light);
    position: relative;
}

.form-container-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-intro {
    width: 40%;
    padding-top: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.form-wrapper {
    width: 55%;
    background: var(--white);
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    margin-top: -3rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.selected-service-display {
    background: var(--light);
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary);
    display: none;
}

.selected-service-display.active {
    display: block;
}

.footer-asymmetric {
    background: var(--dark);
    color: var(--light);
    padding: 6rem 2rem 2rem;
}

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

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

.footer-col h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gray);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 2rem;
    z-index: 999;
    display: none;
}

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--accent);
    color: var(--dark);
}

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

.about-split {
    padding: 8rem 2rem;
    background: var(--white);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.about-image-block {
    width: 45%;
    position: relative;
}

.about-image-block img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-content-block {
    width: 50%;
    padding-top: 2rem;
}

.about-content-block h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.contact-creative {
    padding: 8rem 2rem;
    background: var(--light);
}

.contact-wrap {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-header {
    width: 60%;
    margin-bottom: 4rem;
    margin-left: 10%;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-info-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-card {
    background: var(--white);
    padding: 3rem;
    width: calc(50% - 1.5rem);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-card:nth-child(1) {
    margin-left: 5%;
}

.contact-card:nth-child(2) {
    margin-left: 15%;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.legal-page {
    padding: 8rem 2rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-page p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--light);
}

.thanks-card {
    background: var(--white);
    padding: 4rem;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

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

.thanks-card p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.services-list-page {
    padding: 8rem 2rem;
}

.services-list-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-list-header {
    width: 70%;
    margin-bottom: 4rem;
}

.services-list-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-detail-card {
    background: var(--white);
    padding: 3rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.service-detail-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-detail-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.disclaimer {
    background: rgba(37, 99, 235, 0.05);
    padding: 2rem;
    margin: 4rem 0;
    border-left: 4px solid var(--primary);
}

.disclaimer p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-text-offset {
        width: 100%;
        margin-left: 0;
    }

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

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

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

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

    .form-container-offset {
        flex-direction: column;
    }

    .form-intro,
    .form-wrapper {
        width: 100%;
    }

    .about-container {
        flex-direction: column;
    }

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

    .contact-card {
        width: 100%;
        margin-left: 0 !important;
    }

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

    .nav-container {
        width: 100%;
    }
}