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

:root {
    --primary: #1a3a52;
    --secondary: #b8976d;
    --accent: #2d5f7f;
    --light: #f4f1ed;
    --dark: #1f1f1f;
    --text: #333333;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text);
    overflow-x: hidden;
}

.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 75px;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 45px;
    list-style: none;
    align-items: center;
}

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

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

.ad-notice {
    font-size: 0.78rem;
    color: #666;
    padding: 4px 12px;
    background: #f9f9f9;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.hero-asymmetric {
    margin-top: 75px;
    min-height: 92vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f4f1ed 0%, #e8e4df 100%);
    overflow: hidden;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-text-block {
    flex: 1;
    max-width: 580px;
    position: relative;
    z-index: 2;
    transform: translateX(-30px);
}

.hero-text-block h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 32px;
    letter-spacing: -2px;
}

.hero-text-block p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 42px;
}

.hero-image-offset {
    flex: 1;
    position: relative;
    height: 600px;
    transform: translateY(40px) rotate(-2deg);
}

.hero-image-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

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

.cta-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.section-offset-left {
    padding: 120px 40px;
    background: var(--white);
}

.section-offset-left .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.offset-content-narrow {
    flex: 0 0 450px;
    transform: translateY(60px);
}

.offset-content-narrow h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 28px;
    line-height: 1.2;
    font-weight: 700;
}

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

.offset-image-wide {
    flex: 1;
    position: relative;
}

.offset-image-wide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.services-irregular {
    padding: 100px 40px;
    background: linear-gradient(180deg, #f9f8f6 0%, #ffffff 100%);
}

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

.services-header-offset {
    max-width: 600px;
    margin-bottom: 70px;
    transform: translateX(50px);
}

.services-header-offset h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.services-header-offset p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card-offset {
    flex: 1;
    min-width: 320px;
    max-width: calc(50% - 20px);
    background: var(--white);
    padding: 45px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
    transition: all 0.4s;
}

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

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

.service-card-offset h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 18px;
    font-weight: 600;
}

.service-card-offset p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
}

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

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

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

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

.form-section-overlay {
    padding: 140px 40px;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.form-section-overlay::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.form-wrapper-asymmetric {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px 55px;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: rotate(-1deg);
}

.form-wrapper-asymmetric h2 {
    font-size: 2.3rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.form-wrapper-asymmetric p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

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

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

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #aaa;
    padding: 80px 40px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 22px;
    font-weight: 600;
}

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

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

.footer-column a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-email {
    color: #aaa;
    font-size: 0.95rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 28px 40px;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

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

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
}

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

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

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

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

.cookie-reject {
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
}

.cookie-reject:hover {
    background: #2a2a2a;
}

.page-header {
    margin-top: 75px;
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 18px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.15rem;
    opacity: 0.9;
}

.content-section {
    padding: 80px 40px;
    background: var(--white);
}

.content-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    margin-top: 40px;
    font-weight: 600;
}

.content-section h3 {
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.content-section ul {
    margin: 20px 0 20px 30px;
}

.content-section ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.contact-layout {
    padding: 80px 40px;
    background: var(--white);
}

.contact-layout .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.thanks-container {
    min-height: calc(100vh - 75px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #f4f1ed 0%, #e8e4df 100%);
    margin-top: 75px;
}

.thanks-box {
    max-width: 650px;
    background: var(--white);
    padding: 60px 50px;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-box h1 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 700;
}

.thanks-box p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
}

.disclaimer-box {
    background: #f9f8f6;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
    margin: 40px 0;
}

.disclaimer-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 12px;
}

.about-split {
    padding: 100px 40px;
    background: var(--white);
}

.about-split .container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-intro {
    max-width: 800px;
    margin-bottom: 80px;
}

.about-intro h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 700;
}

.about-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

.about-features {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 600;
}

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

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    transform: rotate(1deg);
}

@media (max-width: 968px) {
    .hero-content-offset {
        flex-direction: column;
        gap: 50px;
    }

    .hero-text-block {
        transform: none;
        max-width: 100%;
    }

    .hero-text-block h1 {
        font-size: 2.8rem;
    }

    .hero-image-offset {
        transform: none;
        height: 400px;
    }

    .section-offset-left .container {
        flex-direction: column;
        gap: 50px;
    }

    .offset-content-narrow {
        transform: none;
    }

    .services-grid-asymmetric {
        flex-direction: column;
    }

    .service-card-offset {
        max-width: 100%;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .contact-layout .container {
        flex-direction: column;
        gap: 50px;
    }

    .about-features {
        flex-direction: column;
        gap: 50px;
    }

    .about-image img {
        transform: none;
    }

    .cookie-content {
        flex-direction: column;
        gap: 25px;
    }

    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
    }
}
