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

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

.ad-disclosure {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    position: fixed;
    top: 40px;
    right: 50px;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-brand {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-links a {
    color: #34495e;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 80px 60px 80px 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.hero-content-left {
    flex: 1;
    max-width: 550px;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content-left p {
    font-size: 20px;
    color: #f0f0f0;
    margin-bottom: 35px;
}

.cta-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.hero-image-right {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%) rotate(3deg);
    width: 600px;
    height: 700px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    background-color: #667eea;
}

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

.intro-asymmetric {
    display: flex;
    padding: 120px 80px;
    gap: 60px;
    align-items: flex-start;
    background-color: #ffffff;
}

.intro-block-overlap {
    flex: 1.2;
    padding: 50px;
    background-color: #ecf0f1;
    border-radius: 0 30px 0 30px;
    transform: translateX(-30px);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.08);
}

.intro-block-overlap h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.intro-block-overlap p {
    font-size: 17px;
    color: #34495e;
}

.intro-visual {
    flex: 1;
    margin-top: 80px;
    background-color: #bdc3c7;
}

.intro-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.services-irregular {
    padding: 100px 60px 120px 140px;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-heading-offset {
    font-size: 44px;
    color: #2c3e50;
    margin-bottom: 70px;
    margin-left: -80px;
}

.service-card {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

.card-left {
    padding-left: 0;
}

.card-right {
    flex-direction: row-reverse;
    padding-right: 0;
    margin-left: 100px;
}

.card-centered {
    margin-left: 150px;
    margin-right: 150px;
}

.service-image {
    flex: 1;
    background-color: #95a5a6;
}

.service-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
}

.service-info {
    flex: 1;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-info h3 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

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

.btn-select-service {
    background-color: #3498db;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #2980b9;
}

.contact-form-section {
    padding: 100px 80px 100px 200px;
    background-color: #34495e;
    position: relative;
}

.form-container-offset {
    max-width: 600px;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 15px;
    transform: rotate(-1deg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    color: #34495e;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #229954;
}

.trust-block {
    padding: 80px 100px;
    background-color: #f39c12;
    text-align: center;
}

.trust-content h3 {
    font-size: 34px;
    color: #ffffff;
    margin-bottom: 20px;
}

.trust-content p {
    font-size: 18px;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 80px 30px 80px;
}

.footer-main {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    padding-top: 30px;
    border-top: 1px solid #34495e;
    font-size: 12px;
    color: #95a5a6;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.btn-cookie-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #566573;
}

.service-selected {
    background-color: #d4edda;
    border: 2px solid #27ae60;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        padding: 60px 40px;
    }

    .hero-image-right {
        position: relative;
        right: 0;
        transform: none;
        width: 100%;
        margin-top: 40px;
    }

    .nav-floating {
        position: relative;
        top: 0;
        right: 0;
        flex-direction: row;
        justify-content: space-between;
    }

    .nav-links {
        flex-direction: row;
    }

    .service-card {
        flex-direction: column;
    }

    .card-right {
        flex-direction: column;
        margin-left: 0;
    }
}