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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --bg-light: #f8f9fa;
    --bg-dark: #34495e;
    --spacing-xs: 1rem;
    --spacing-sm: 2rem;
    --spacing-md: 4rem;
    --spacing-lg: 6rem;
    --spacing-xl: 8rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xs);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    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);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing-xs);
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    z-index: 10;
}

.ad-notice {
    position: absolute;
    top: -25px;
    right: var(--spacing-xs);
    font-size: 0.7rem;
    color: #95a5a6;
    background: #f8f9fa;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
}

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

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.hero-asymmetric {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content-wrap {
    display: flex;
    width: 100%;
    position: relative;
}

.hero-text-block {
    width: 55%;
    padding: var(--spacing-lg) var(--spacing-sm);
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    transform: translateX(-40px);
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 800;
}

.hero-text-block p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
    color: #555;
}

.hero-image-block {
    width: 60%;
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    height: 600px;
}

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

.cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
}

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

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

.offset-section {
    padding: var(--spacing-lg) 0;
    position: relative;
}

.asymmetric-grid {
    display: flex;
    gap: 3rem;
    align-items: stretch;
    margin-bottom: var(--spacing-md);
}

.grid-item-large {
    flex: 1.5;
    background: white;
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-40px);
}

.grid-item-small {
    flex: 1;
    background: var(--bg-light);
    padding: var(--spacing-sm);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-asymmetric {
    background: var(--bg-light);
    padding: var(--spacing-xl) 0;
}

.service-cards-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: var(--spacing-md);
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: var(--spacing-sm);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.service-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-card-image {
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

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

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

.service-card p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

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

.section-title {
    font-size: 2.8rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
}

.overlap-section {
    position: relative;
    margin-top: -80px;
    z-index: 10;
}

.overlap-content {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.form-section {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: var(--spacing-sm);
}

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

.footer-column h3 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.3rem;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-sm);
    text-align: center;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    backdrop-filter: blur(10px);
    color: white;
    padding: 2rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

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

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

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

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

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

.zigzag-section {
    padding: var(--spacing-xl) 0;
}

.zigzag-item {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.zigzag-item:nth-child(even) {
    flex-direction: row-reverse;
}

.zigzag-text {
    flex: 1;
}

.zigzag-image {
    flex: 1;
    height: 400px;
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
}

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

.contact-layout {
    display: flex;
    gap: 3rem;
    margin-top: var(--spacing-md);
}

.contact-info {
    flex: 1;
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 15px;
}

.contact-map {
    flex: 1.5;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.info-block p {
    line-height: 1.8;
    color: #555;
}

.email-display {
    color: #555;
    font-weight: 600;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.thanks-box {
    text-align: center;
    max-width: 600px;
    background: white;
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    font-size: 5rem;
    color: #27ae60;
    margin-bottom: var(--spacing-sm);
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-xs);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

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

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

.legal-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.disclaimer-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: var(--spacing-sm);
    margin: var(--spacing-md) 0;
    border-radius: 5px;
}

.disclaimer-box p {
    margin-bottom: 0.5rem;
}

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

    .hero-content-wrap {
        flex-direction: column;
    }

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

    .hero-image-block {
        position: relative;
        width: 100%;
        right: 0;
        transform: none;
        margin-top: 2rem;
    }

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

    .grid-item-large {
        transform: none;
    }

    .zigzag-item {
        flex-direction: column !important;
    }

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

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

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

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