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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #f8f9fa;
}

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

.ad-disclosure {
    background: #fff3cd;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #856404;
    border-bottom: 1px solid #ffeaa7;
}

header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #3498db;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 580px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.98);
    margin-left: 8%;
    margin-top: -40px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
}

.hero-content-offset h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-content-offset p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.hero-image-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

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

.card-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.card-offset {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s;
}

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

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

.card-offset img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 20px;
}

.card-offset h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.card-offset p {
    color: #5a6c7d;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 15px;
}

.split-irregular {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 80px 0;
}

.split-content {
    flex: 1.2;
    padding: 60px 50px;
    background: #fff;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 450px;
    position: relative;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.split-content ul {
    list-style: none;
    margin-top: 25px;
}

.split-content li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #5a6c7d;
}

.split-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.floating-cta-section {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
    margin: 60px 0;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0% 100%);
}

.floating-cta-section .container {
    text-align: center;
    color: #fff;
}

.floating-cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.floating-cta-section p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.form-container {
    max-width: 600px;
    margin: 60px auto;
    padding: 50px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: rotate(-1deg);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.service-selector {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.service-option {
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-option:hover {
    border-color: #3498db;
    background: #f8f9fa;
}

.service-option.selected {
    border-color: #3498db;
    background: #e3f2fd;
}

.service-option .service-name {
    font-weight: 600;
    color: #2c3e50;
}

.service-option .service-price {
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
}

footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 30px;
    margin-top: 80px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

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

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

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

.disclaimer {
    background: #fff3cd;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #ffc107;
    font-size: 14px;
    line-height: 1.7;
    color: #856404;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 25px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

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

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

.btn-accept {
    background: #27ae60;
    color: #fff;
}

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: #e74c3c;
    color: #fff;
}

.btn-reject:hover {
    background: #c0392b;
}

.about-offset-grid {
    display: flex;
    gap: 40px;
    margin: 60px 0;
    align-items: center;
}

.about-text-block {
    flex: 1.3;
    padding: 40px;
}

.about-text-block h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-text-block p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.about-image-block {
    flex: 1;
}

.about-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 20px 20px 0 #3498db;
}

.services-asymmetric {
    padding: 80px 20px;
}

.services-asymmetric h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: #5a6c7d;
}

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

.contact-info-panel {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 50px;
    color: #fff;
}

.contact-info-panel h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

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

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.8;
}

.contact-form-panel {
    flex: 1.2;
    background: #fff;
    padding: 60px 50px;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: #fff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-page p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #5a6c7d;
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page li {
    margin-bottom: 12px;
    color: #5a6c7d;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 35px;
}

.success-icon {
    font-size: 80px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .hero-content-offset {
        margin-left: 0;
        margin-top: 0;
    }

    .hero-content-offset h1 {
        font-size: 32px;
    }

    .split-irregular,
    .contact-split,
    .about-offset-grid {
        flex-direction: column;
    }

    .card-offset:nth-child(even) {
        transform: translateY(0);
    }

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