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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

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

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

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

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

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

.hero-asymmetric {
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 20px;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 580px;
    margin-left: 8%;
    z-index: 2;
    position: relative;
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 22px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.4;
}

.cta-primary {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.cta-primary:hover {
    background: #c0392b;
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 52%;
    z-index: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-offset {
    padding: 120px 8% 100px 8%;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.intro-text-block {
    flex: 1.2;
    padding-right: 40px;
}

.intro-text-block h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #2c3e50;
}

.intro-text-block p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.intro-image-right {
    flex: 0.8;
    background-color: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 60px;
}

.intro-image-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-asymmetric {
    padding: 80px 8% 100px 8%;
    background: #f8f9fa;
}

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

.service-card-left,
.service-card-right {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.service-card-left {
    margin-right: 10%;
}

.service-card-right {
    margin-left: 10%;
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
}

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

.service-info p {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
    margin-top: 20px;
    margin-bottom: 20px;
}

.btn-select-service {
    background: #34495e;
    color: #ffffff;
    border: none;
    padding: 13px 32px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-select-service:hover {
    background: #2c3e50;
}

.service-card-full {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 50px;
}

.service-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #95a5a6;
}

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

.service-info-inline {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    max-width: 500px;
    margin: 60px 0 0 60px;
    border-radius: 8px;
}

.service-info-inline h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.service-info-inline p {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
}

.form-section-overlap {
    padding: 100px 8%;
    background: #ffffff;
    position: relative;
}

.form-container {
    max-width: 650px;
    margin-left: auto;
    margin-right: 12%;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-intro {
    font-size: 17px;
    color: #555;
    margin-bottom: 35px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

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

.btn-submit {
    background: #e74c3c;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
}

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

.why-us-asymmetric {
    padding: 100px 8%;
    display: flex;
    gap: 70px;
    background: #ecf0f1;
    align-items: center;
}

.why-content {
    flex: 1.3;
}

.why-content h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.why-point h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.why-point p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.why-image-offset {
    flex: 0.7;
    background-color: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 80px;
}

.why-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-bottom-asymmetric {
    padding: 80px 8%;
    text-align: center;
    background: #2c3e50;
    color: #ffffff;
}

.cta-bottom-asymmetric h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-bottom-asymmetric p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-secondary {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.cta-secondary:hover {
    background: #c0392b;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 8% 30px 8%;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    color: #aaa;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #e74c3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #777;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px 8%;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

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

.cookie-btn-accept,
.cookie-btn-reject {
    padding: 12px 28px;
    font-size: 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

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

.cookie-btn-reject {
    background: #95a5a6;
    color: #ffffff;
}

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

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

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

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

.thanks-content p {
    font-size: 19px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.thanks-service {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.about-hero {
    padding: 100px 8% 80px 8%;
    background: #f8f9fa;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #2c3e50;
    max-width: 700px;
}

.about-hero p {
    font-size: 20px;
    color: #555;
    max-width: 650px;
    line-height: 1.6;
}

.about-content {
    padding: 80px 8%;
}

.about-section {
    margin-bottom: 70px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-section-reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
    background-color: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-page-hero {
    padding: 100px 8% 60px 8%;
    background: #2c3e50;
    color: #ffffff;
}

.services-page-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.services-page-hero p {
    font-size: 20px;
    max-width: 650px;
    opacity: 0.9;
}

.services-list {
    padding: 80px 8%;
}

.service-item {
    margin-bottom: 100px;
}

.contact-hero {
    padding: 100px 8% 60px 8%;
    background: #ecf0f1;
}

.contact-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-hero p {
    font-size: 20px;
    color: #555;
    max-width: 650px;
}

.contact-details {
    padding: 80px 8%;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.info-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background-color: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legal-page {
    padding: 100px 8% 80px 8%;
}

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

.legal-page h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 17px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .floating-nav {
        top: 45px;
        right: 20px;
        padding: 15px 20px;
    }

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

    .hero-image-overlap {
        width: 45%;
        right: 0;
    }

    .intro-offset {
        flex-direction: column;
    }

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

    .why-us-asymmetric {
        flex-direction: column;
    }

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

    .about-section,
    .about-section-reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        border-radius: 0;
        padding: 15px 20px;
    }

    .nav-links {
        flex-direction: row;
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-content-offset {
        margin-left: 0;
        max-width: 100%;
    }

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

    .hero-image-overlap {
        position: static;
        width: 100%;
        margin-top: 30px;
    }

    .intro-offset {
        padding: 60px 20px;
    }

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

    .section-title-offset {
        margin-left: 0;
        font-size: 32px;
    }

    .form-container {
        margin-right: 0;
        padding: 35px 25px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn-accept,
    .cookie-btn-reject {
        width: 100%;
    }
}