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

:root {
    --primary: #2c3e50;
    --secondary: #e67e22;
    --accent: #d35400;
    --light: #ecf0f1;
    --dark: #1a252f;
    --gray: #7f8c8d;
    --white: #ffffff;
}

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

.nav-wrapper {
    position: fixed;
    top: 30px;
    right: 50px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.ad-disclosure {
    background: rgba(230, 126, 34, 0.95);
    color: white;
    padding: 8px 18px;
    font-size: 0.75rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

nav {
    background: rgba(255, 255, 255, 0.98);
    padding: 20px 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-radius: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

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

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

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 45%;
    padding: 140px 60px 80px 80px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 55%;
    position: relative;
    background-color: var(--light);
}

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

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

.hero-content p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 480px;
}

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

.cta-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

.offset-section {
    display: flex;
    align-items: stretch;
    position: relative;
    margin: -80px 0 0 0;
}

.offset-content {
    width: 50%;
    padding: 100px 70px;
    background: var(--primary);
    color: white;
    position: relative;
    z-index: 3;
}

.offset-visual {
    width: 50%;
    background-color: var(--light);
    position: relative;
}

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

.offset-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.offset-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 18px;
    opacity: 0.95;
}

.services-grid {
    padding: 120px 80px;
    background: var(--light);
}

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

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background: white;
    padding: 45px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

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

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

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

.service-card p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.service-card button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s;
}

.service-card button:hover {
    background: var(--secondary);
    transform: translateX(5px);
}

.asymmetric-block {
    display: flex;
    position: relative;
    margin: 0;
}

.asym-left {
    width: 35%;
    padding: 90px 50px;
    background: var(--secondary);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.asym-right {
    width: 65%;
    padding: 90px 80px 90px 100px;
    background: white;
}

.asym-left h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.form-container {
    max-width: 600px;
}

.form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary);
}

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

.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;
}

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

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

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.disclaimer {
    background: rgba(230, 126, 34, 0.1);
    padding: 30px;
    border-left: 4px solid var(--secondary);
    margin: 40px 0;
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 37, 47, 0.98);
    color: white;
    padding: 25px 40px;
    display: none;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    display: flex;
}

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

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

.cookie-buttons button {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

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

.content-page {
    padding: 140px 80px 80px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-page h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: var(--dark);
}

.content-page h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    color: var(--primary);
}

.content-page p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--gray);
}

.content-page ul {
    margin: 20px 0 20px 40px;
    line-height: 1.8;
    color: var(--gray);
}

.contact-grid {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.contact-item p {
    color: var(--gray);
    line-height: 1.6;
}

.contact-email {
    color: var(--gray);
    text-decoration: none;
    pointer-events: none;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thanks-box {
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    font-size: 3rem;
    color: white;
}

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

.thanks-box p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
    }

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

    .offset-section,
    .asymmetric-block,
    .contact-grid {
        flex-direction: column;
    }

    .offset-content,
    .offset-visual,
    .asym-left,
    .asym-right {
        width: 100%;
    }

    .nav-wrapper {
        position: static;
        padding: 20px;
        align-items: center;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .cookie-text {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
