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

:root {
    --primary: #2C5F8D;
    --secondary: #E8A87C;
    --dark: #1A1A2E;
    --light: #F4F4F4;
    --accent: #C38D9E;
    --text: #333333;
}

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

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

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

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

.nav-main {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #777;
    padding: 0.3rem 0.8rem;
    background: #f9f9f9;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
}

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

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

.hero-content-offset h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image-float {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 48%;
    height: 70%;
    background-color: #E8EEF2;
    overflow: hidden;
    transform: rotate(3deg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 95, 141, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    border: 2px solid var(--primary);
    border-radius: 6px;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1rem;
    margin-left: 1rem;
}

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

.section-offset {
    padding: 5rem 5%;
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-offset.reverse {
    flex-direction: row-reverse;
}

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.content-block p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.image-block-inner {
    width: 100%;
    height: 500px;
    background-color: #E8EEF2;
    overflow: hidden;
    transform: rotate(-2deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.image-block-inner img {
    width: 100%;
    height: 100%;
    transform: rotate(2deg);
}

.services-creative {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.services-creative h2 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 3rem;
    text-align: left;
    max-width: 600px;
}

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

.service-card-creative {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    position: relative;
    transform: rotate(-1deg);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card-creative:nth-child(even) {
    transform: rotate(1deg);
    margin-top: 2rem;
}

.service-card-creative:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

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

.service-card-creative p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.about-asymmetric {
    padding: 5rem 5%;
    display: flex;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

.about-text {
    flex: 1.5;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.about-visual {
    flex: 1;
    position: relative;
    margin-top: 3rem;
}

.about-visual-box {
    width: 100%;
    height: 400px;
    background-color: #D4E2ED;
    transform: rotate(4deg);
    overflow: hidden;
}

.about-visual-box img {
    width: 100%;
    height: 100%;
    transform: rotate(-4deg) scale(1.1);
}

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

.form-container-creative {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 12px;
    transform: rotate(-1deg);
}

.form-container-creative h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transform: rotate(1deg);
}

.form-container-creative p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.footer {
    background: var(--dark);
    color: #ccc;
    padding: 3rem 5%;
}

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

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: #aaa;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    color: white;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    z-index: 2000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

.cookie-banner.hidden {
    display: none;
}

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

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

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

.cookie-btn:hover {
    opacity: 0.8;
}

.contact-layout {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-layout h1 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 2rem;
}

.contact-details {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-details p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.contact-details strong {
    color: var(--primary);
    display: block;
    margin-top: 1.5rem;
}

.legal-page {
    padding: 5rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

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

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
}

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

.thanks-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

@media (max-width: 968px) {
    .nav-main {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: white;
        width: 250px;
        padding: 2rem;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        height: calc(100vh - 80px);
        transition: right 0.3s;
        align-items: flex-start;
    }

    .nav-main.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-image-float {
        display: none;
    }

    .section-offset,
    .section-offset.reverse {
        flex-direction: column;
    }

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

    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions {
        justify-content: stretch;
        flex-direction: column;
    }
}
