* {
    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: #ffffff;
}

.ad-disclosure {
    background: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

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

.hero-content-offset {
    max-width: 550px;
    z-index: 2;
    position: relative;
    margin-right: -80px;
}

.hero-content-offset h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 30px;
    color: #1a252f;
    font-weight: 700;
}

.hero-content-offset p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: #34495e;
    line-height: 1.7;
}

.hero-image-overlap {
    width: 60%;
    height: 700px;
    position: relative;
    margin-left: auto;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #2980b9;
}

.intro-offset {
    padding: 120px 60px 100px 180px;
    background: #ecf0f1;
}

.intro-narrow {
    max-width: 700px;
}

.intro-narrow h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    color: #1a252f;
    line-height: 1.25;
}

.intro-narrow p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #34495e;
}

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

.section-title-offset {
    margin-left: 120px;
    margin-bottom: 60px;
}

.section-title-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a252f;
}

.section-title-offset p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.service-card {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

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

.card-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 400px;
}

.card-medium {
    flex: 1 1 calc(48% - 15px);
    min-width: 350px;
}

.card-small {
    flex: 1 1 calc(35% - 15px);
    min-width: 300px;
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

.btn-service-select {
    padding: 12px 28px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-service-select:hover {
    background: #34495e;
}

.form-section-offset {
    padding: 100px 60px 100px 140px;
    background: #f8f9fa;
}

.form-container {
    max-width: 650px;
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.form-container > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #555;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid #dce1e6;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    padding: 16px 40px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.3s;
}

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

.trust-section {
    padding: 100px 60px;
}

.trust-content-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-text {
    flex: 1;
    padding-left: 80px;
}

.trust-text h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: #1a252f;
}

.trust-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.7;
}

.trust-image {
    flex: 1;
    height: 500px;
}

.trust-image img {
    width: 100%;
    height: 100%;
}

.testimonials-irregular {
    padding: 100px 60px;
    background: #34495e;
    color: #ffffff;
}

.testimonials-irregular h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 400px;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.95rem;
}

.cta-offset-section {
    padding: 120px 60px 120px 200px;
}

.cta-box {
    max-width: 600px;
    background: #3498db;
    padding: 60px;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 38px;
    background: #ffffff;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background 0.3s, color 0.3s;
}

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

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

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

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #95a5a6;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px 40px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

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

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

.thanks-content {
    max-width: 700px;
    text-align: center;
}

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

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.7;
}

.thanks-content .service-info {
    background: #ecf0f1;
    padding: 25px;
    margin: 30px 0;
    font-size: 1.1rem;
}

.thanks-content .service-info strong {
    color: #2c3e50;
}

.about-hero {
    padding: 120px 60px 80px 100px;
    background: #ecf0f1;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: #1a252f;
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    color: #34495e;
    line-height: 1.7;
}

.about-content {
    padding: 100px 60px;
}

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

.about-section:nth-child(even) {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a252f;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
}

.contact-page {
    padding: 100px 60px;
}

.contact-header {
    max-width: 700px;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #1a252f;
}

.contact-header p {
    font-size: 1.2rem;
    color: #34495e;
    line-height: 1.7;
}

.contact-info-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 900px;
}

.contact-info-item {
    flex: 1 1 calc(45% - 25px);
    min-width: 300px;
}

.contact-info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-info-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.legal-page {
    padding: 100px 60px;
    max-width: 1000px;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #1a252f;
}

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

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

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

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

.legal-page li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .nav-floating {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 30px;
    }

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

    .hero-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
    }

    .hero-content-offset {
        margin-right: 0;
        margin-bottom: 40px;
        max-width: 100%;
    }

    .hero-image-overlap {
        width: 100%;
        height: 400px;
        clip-path: none;
    }

    .intro-offset,
    .form-section-offset,
    .cta-offset-section {
        padding: 60px 30px;
    }

    .trust-content-split,
    .about-section {
        flex-direction: column;
    }

    .trust-text {
        padding-left: 0;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

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