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

:root {
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #e67e22;
    --light: #ecf0f1;
    --dark: #34495e;
    --text: #2c3e50;
    --bg: #ffffff;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
}

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

.ad-notice {
    background: #fff3cd;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    color: #856404;
    border: 1px solid #ffeaa7;
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

.hero-asymmetric {
    margin-top: 70px;
    display: flex;
    min-height: 85vh;
    position: relative;
}

.hero-content-offset {
    width: 55%;
    padding: 120px 60px 80px 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.hero-image-overlap {
    width: 50%;
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    background-color: var(--light);
}

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

.hero-content-offset h1 {
    font-size: 52px;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content-offset p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 500px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s;
    cursor: pointer;
    font-size: 16px;
}

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

.section-overlap {
    position: relative;
    margin-top: -100px;
}

.services-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 80px 60px;
}

.service-card-offset {
    background: white;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card-offset:nth-child(1) {
    width: calc(60% - 20px);
    margin-left: 80px;
}

.service-card-offset:nth-child(2) {
    width: calc(40% - 20px);
    margin-top: 60px;
}

.service-card-offset:nth-child(3) {
    width: calc(45% - 20px);
    margin-left: 40px;
}

.service-card-offset:nth-child(4) {
    width: calc(55% - 20px);
    margin-top: 40px;
}

.service-card-offset:nth-child(5) {
    width: calc(50% - 20px);
    margin-left: 100px;
}

.service-card-offset:nth-child(6) {
    width: calc(50% - 20px);
    margin-top: 80px;
}

.service-card-offset:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    color: white;
}

.service-card-offset h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card-offset p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin: 20px 0;
}

.about-split-asymmetric {
    display: flex;
    margin: 100px 0;
    gap: 0;
}

.about-text-side {
    width: 50%;
    padding: 80px 70px;
    background: var(--light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    left: 60px;
    z-index: 2;
}

.about-image-side {
    width: 50%;
    position: relative;
    background-color: var(--dark);
}

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

.about-text-side h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary);
}

.about-text-side p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.cta-diagonal {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    padding: 100px 80px;
    color: white;
    text-align: center;
    position: relative;
    margin: 80px 0;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

.cta-diagonal h2 {
    font-size: 46px;
    margin-bottom: 30px;
}

.cta-diagonal p {
    font-size: 19px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.form-section-offset {
    display: flex;
    margin: 100px 0;
    gap: 60px;
    padding: 0 60px;
}

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

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary);
}

.form-intro p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
}

.form-container {
    width: 60%;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    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 {
    background: var(--primary);
    color: white;
    padding: 60px 0 30px;
}

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

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

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    line-height: 1.7;
}

.footer-section a:hover {
    color: white;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 25px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

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

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

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

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

.cookie-reject:hover {
    background: rgba(255,255,255,0.1);
}

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

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

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

    .hero-content-offset {
        width: 100%;
        clip-path: none;
    }

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

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

    .about-text-side,
    .about-image-side {
        width: 100%;
        left: 0;
    }

    .about-image-side {
        height: 400px;
    }

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

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

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

    nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    nav.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

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

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

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

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

.page-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--dark);
}

.page-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
    color: #555;
}

.page-content li {
    margin-bottom: 10px;
}

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

.contact-info {
    flex: 1;
}

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary);
}

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

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    text-align: center;
    padding: 80px 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.thanks-container h1 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 25px;
}

.thanks-container p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

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