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

:root {
    --primary: #2c3e50;
    --secondary: #e74c3c;
    --accent: #f39c12;
    --bg-light: #ecf0f1;
    --bg-dark: #34495e;
    --text: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--accent);
    color: var(--primary);
}

.btn-accept:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-reject:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.header-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: relative;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-left {
    transform: translateY(-5px);
}

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

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: italic;
}

.nav-floating {
    display: flex;
    gap: 2rem;
}

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

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

.nav-floating a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-floating a:hover::after {
    width: 100%;
}

.hero-offset {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 5%;
    overflow: hidden;
}

.hero-text-block {
    max-width: 520px;
    z-index: 2;
    position: relative;
    padding-right: 3rem;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 800;
}

.hero-subtext {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.5;
}

.hero-image-diagonal {
    position: absolute;
    right: -10%;
    top: 10%;
    width: 55%;
    height: 75%;
    transform: rotate(-3deg);
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    background-color: var(--bg-light);
}

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

.intro-irregular {
    padding: 6rem 5%;
    background: var(--bg-light);
    position: relative;
}

.intro-narrow {
    max-width: 700px;
    margin-left: 12%;
    transform: translateY(-20px);
}

.intro-narrow p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.intro-narrow p:first-child {
    font-weight: 600;
    font-size: 1.6rem;
}

.services-staggered {
    padding: 5rem 5%;
    background: var(--white);
}

.services-header-offset {
    margin-left: 8%;
    margin-bottom: 4rem;
}

.services-header-offset h2 {
    font-size: 2.8rem;
    color: var(--primary);
}

.service-card-left,
.service-card-right {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1100px;
}

.service-card-left {
    margin-left: 5%;
}

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

.service-image-small {
    flex: 0 0 280px;
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background-color: var(--bg-light);
}

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

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.service-details p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 1rem;
}

.btn-service {
    padding: 0.9rem 2rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-service:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231,76,60,0.3);
}

.form-diagonal {
    padding: 6rem 5%;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.form-bg-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--secondary);
    opacity: 0.08;
    border-radius: 50%;
    top: -100px;
    right: 10%;
    pointer-events: none;
}

.form-wrapper-offset {
    max-width: 650px;
    margin-left: 10%;
    position: relative;
    z-index: 2;
}

.form-wrapper-offset h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.form-intro {
    color: var(--bg-light);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.contact-form-asymmetric {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.form-row-stagger {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    flex: 1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--bg-light);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.btn-submit-offset {
    padding: 1rem 3rem;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateX(10px);
}

.btn-submit-offset:hover {
    background: var(--accent);
    transform: translateX(10px) translateY(-3px);
    box-shadow: 0 10px 25px rgba(243,156,18,0.4);
}

.trust-scattered {
    padding: 5rem 5%;
    background: var(--white);
    display: flex;
    gap: 5rem;
    align-items: center;
}

.trust-block-a {
    flex: 1;
    max-width: 500px;
    margin-left: 8%;
}

.trust-block-a h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.trust-block-a p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text);
}

.trust-block-b {
    flex: 0 0 350px;
    transform: translateY(-30px);
}

.trust-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-layered {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-nav-offset {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-col p {
    color: var(--bg-light);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--bg-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.disclaimer-footer {
    font-size: 0.8rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 1rem auto 0;
    line-height: 1.5;
}

.page-header-simple {
    padding: 4rem 5%;
    background: var(--bg-dark);
    text-align: center;
}

.page-header-simple h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header-simple p {
    font-size: 1.2rem;
    color: var(--bg-light);
}

.content-offset {
    padding: 4rem 5%;
    max-width: 900px;
    margin-left: 12%;
}

.content-offset h2 {
    font-size: 2rem;
    color: var(--primary);
    margin: 2.5rem 0 1rem;
}

.content-offset h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 2rem 0 0.8rem;
}

.content-offset p {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.content-offset ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.contact-page-layout {
    display: flex;
    gap: 4rem;
    padding: 4rem 5%;
    align-items: flex-start;
}

.contact-info-left {
    flex: 1;
    max-width: 450px;
    transform: translateY(30px);
}

.contact-info-left h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 0.8rem;
}

.contact-detail p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text);
}

.contact-image-right {
    flex: 1;
    max-width: 500px;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    background-color: var(--bg-light);
}

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

.thanks-wrapper {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.thanks-content .btn-home {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.thanks-content .btn-home:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(243,156,18,0.4);
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .hero-image-diagonal {
        position: relative;
        width: 100%;
        margin-top: 2rem;
        right: 0;
        transform: none;
    }

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

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

    .trust-scattered {
        flex-direction: column;
    }

    .trust-block-a {
        margin-left: 0;
    }

    .contact-page-layout {
        flex-direction: column;
    }

    .form-row-stagger {
        flex-direction: column;
    }

    .footer-nav-offset {
        flex-direction: column;
    }
}