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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #ddd;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--secondary-color);
    color: var(--white);
}

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

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

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
}

.header-asymmetric {
    position: relative;
}

.ad-disclosure {
    background: #f39c12;
    color: var(--white);
    text-align: center;
    padding: 8px;
    font-size: 13px;
}

.nav-offset {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px 20px 100px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

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

.hero-asymmetric {
    display: flex;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    padding: 100px 60px 60px 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light-bg);
    position: relative;
    z-index: 2;
}

.headline-large {
    font-size: 52px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 24px;
    max-width: 600px;
}

.subheadline {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    align-self: flex-start;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(230, 126, 34, 0.3);
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-left: -80px;
    margin-top: 40px;
    margin-bottom: -40px;
    background-color: #e8e8e8;
}

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

.intro-offset {
    padding: 120px 80px 80px 180px;
    background: var(--white);
}

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

.intro-text-narrow h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

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

.services-grid-asymmetric {
    padding: 80px 60px;
    background: var(--light-bg);
}

.section-header-offset {
    margin-left: 100px;
    margin-bottom: 60px;
}

.section-header-offset h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.section-header-offset p {
    font-size: 18px;
    color: #666;
}

.service-cards-staggered {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    width: 360px;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card-offset-1 {
    margin-top: 0;
}

.card-offset-2 {
    margin-top: 40px;
}

.card-offset-3 {
    margin-top: 20px;
}

.card-image {
    width: 100%;
    height: 240px;
    background-color: #ddd;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.card-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    min-height: 60px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: #1a252f;
}

.contact-form-section {
    padding: 100px 60px;
    background: var(--white);
}

.form-container-offset {
    max-width: 600px;
    margin-left: 140px;
}

.form-container-offset h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

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

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px 40px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

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

.trust-section {
    padding: 100px 80px;
    background: var(--light-bg);
}

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

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.trust-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
}

.trust-image {
    flex: 1;
    background-color: #ddd;
}

.trust-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.cta-final-offset {
    padding: 80px 60px 80px 160px;
    background: var(--primary-color);
    color: var(--white);
}

.cta-final-offset h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-final-offset p {
    font-size: 19px;
    margin-bottom: 32px;
    max-width: 700px;
}

.cta-secondary {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

.footer-staggered {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 80px 30px;
}

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

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

.footer-col h3,
.footer-col h4 {
    color: var(--white);
    margin-bottom: 16px;
}

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

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

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

.footer-col a:hover {
    color: var(--secondary-color);
}

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

.disclaimer {
    font-size: 13px;
    line-height: 1.5;
    color: #999;
}

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

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

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-image-overlap {
        margin-left: 0;
        margin-top: 0;
        min-height: 400px;
    }

    .hero-content-offset {
        padding: 60px 40px;
    }

    .headline-large {
        font-size: 40px;
    }

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

    .nav-offset {
        padding: 20px 40px;
    }

    .intro-offset,
    .form-container-offset {
        padding-left: 40px;
        margin-left: 0;
    }

    .section-header-offset {
        margin-left: 0;
    }
}

.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    padding: 120px 80px 80px;
    color: var(--white);
}

.about-hero-content {
    max-width: 800px;
    margin-left: 60px;
}

.about-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.5;
}

.about-story {
    padding: 100px 80px;
    background: var(--white);
}

.story-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-image {
    flex: 1;
    background-color: #ddd;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

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

.philosophy-section {
    padding: 100px 80px;
    background: var(--light-bg);
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.philosophy-item {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.philosophy-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.philosophy-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.experience-section {
    padding: 100px 80px;
    background: var(--white);
}

.experience-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.experience-text {
    flex: 1.2;
}

.experience-text h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

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

.experience-numbers {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.number-item {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 8px;
}

.number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.number-label {
    font-size: 16px;
    color: #666;
}

.cta-about {
    padding: 80px 60px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-about h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-about p {
    font-size: 19px;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-page-header {
    padding: 100px 80px 60px;
    background: var(--light-bg);
}

.services-page-header h1 {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.services-page-header p {
    font-size: 20px;
    color: #666;
    max-width: 700px;
}

.services-detailed {
    padding: 80px 60px;
    background: var(--white);
}

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

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #ddd;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-features {
    margin-top: 24px;
}

.service-features h3 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 12px;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #666;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.contact-page {
    padding: 80px 60px;
    background: var(--light-bg);
}

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

.contact-header {
    margin-bottom: 60px;
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 19px;
    color: #666;
}

.contact-content {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-info h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

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

.info-item h3 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 8px;
}

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

.info-item .email-text {
    color: var(--secondary-color);
    font-weight: 600;
}

.thanks-page {
    padding: 120px 60px;
    background: var(--light-bg);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: var(--white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: var(--white);
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-selected {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 4px;
    margin: 24px 0;
    font-weight: 600;
    color: var(--primary-color);
}

.legal-page {
    padding: 80px 60px;
    background: var(--white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.legal-container h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-container h3 {
    font-size: 22px;
    color: var(--text-color);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-container p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-container ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.legal-container li {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.7;
}

.last-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .story-layout,
    .experience-layout,
    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .headline-large {
        font-size: 32px;
    }

    .service-card {
        width: 100%;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3 {
        margin-top: 0;
    }

    .footer-content {
        flex-direction: column;
    }

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

    .philosophy-grid {
        flex-direction: column;
    }

    .experience-numbers {
        flex-direction: row;
        gap: 20px;
    }
}