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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --border-color: #ddd;
}

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

.ad-disclosure {
    background-color: #fffbea;
    border-bottom: 1px solid #f4d03f;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #856404;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.hero-content-offset {
    max-width: 550px;
    z-index: 10;
    margin-left: 8%;
}

.hero-content-offset h1 {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 800;
}

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

.hero-image-overlap {
    position: absolute;
    right: -10%;
    top: 15%;
    width: 55%;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-color);
    padding: 14px 35px;
    text-decoration: none;
    border: 2px solid var(--secondary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.intro-asymmetric {
    padding: 120px 60px;
    display: flex;
    align-items: center;
    gap: 80px;
    background-color: var(--light-bg);
}

.intro-text-block {
    flex: 1;
    margin-left: 15%;
}

.intro-text-block h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.intro-text-block p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
}

.intro-visual-offset {
    width: 400px;
    margin-top: -60px;
}

.intro-visual-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e0e0e0;
}

.services-cards-irregular {
    padding: 100px 60px;
}

.section-title-offset {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 60px;
    margin-left: 12%;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: calc(33.333% - 20px);
    min-width: 280px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

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

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

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

.service-card.card-4 {
    margin-top: 30px;
}

.service-card.card-5 {
    margin-top: -30px;
}

.service-card.card-6 {
    margin-top: 20px;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 20px 20px 10px;
}

.service-card p {
    font-size: 1rem;
    color: #666;
    margin: 0 20px 15px;
    line-height: 1.6;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 15px 20px;
}

.service-card .select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.service-card .select-service:hover {
    background-color: #2980b9;
    transform: scale(1.02);
}

.why-us-overlap {
    padding: 100px 60px;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    gap: 100px;
}

.why-content-irregular {
    flex: 1;
    margin-right: 5%;
}

.why-content-irregular h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    font-size: 1.1rem;
    padding: 15px 0 15px 35px;
    position: relative;
    color: #555;
    line-height: 1.7;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.why-image-shift {
    width: 420px;
    margin-top: -80px;
}

.why-image-shift img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e0e0e0;
}

.form-section-asymmetric {
    padding: 120px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-wrapper-offset {
    max-width: 600px;
    margin-left: 20%;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

.form-wrapper-offset p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.selected-service-display {
    background-color: #f0f8ff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    border-left: 4px solid var(--secondary-color);
}

.selected-service-display p {
    margin: 5px 0;
    color: var(--text-color);
}

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

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

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

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.trust-markers-scattered {
    padding: 100px 60px;
    background-color: var(--light-bg);
}

.trust-markers-scattered h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

.trust-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-around;
}

.trust-content > div {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    max-width: 350px;
}

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

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

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

.trust-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.trust-content span {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
}

.footer-asymmetric {
    background-color: var(--dark-bg);
    color: white;
    padding: 60px 60px 30px;
}

.footer-content-irregular {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-content-irregular > div {
    flex: 1;
    min-width: 200px;
}

.footer-block-1 {
    margin-top: 0;
}

.footer-block-2 {
    margin-top: 20px;
}

.footer-block-3 {
    margin-top: -10px;
}

.footer-content-irregular h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.footer-content-irregular p {
    color: #aaa;
    line-height: 1.7;
}

.footer-content-irregular ul {
    list-style: none;
}

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

.footer-content-irregular ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content-irregular ul li a:hover {
    color: white;
}

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

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(30, 30, 30, 0.98);
    color: white;
    padding: 25px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.cookie-btn.accept:hover {
    background-color: #2980b9;
    transform: scale(1.05);
}

.cookie-btn.reject {
    background-color: #555;
    color: white;
}

.cookie-btn.reject:hover {
    background-color: #444;
    transform: scale(1.05);
}

.disclaimer-notice {
    background-color: #fffbea;
    border: 1px solid #f4d03f;
    padding: 30px;
    margin: 60px 60px 0;
    border-radius: 8px;
}

.disclaimer-notice p {
    font-size: 0.95rem;
    color: #856404;
    line-height: 1.7;
}

.page-header-asymmetric {
    padding: 140px 60px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-left: 10%;
}

.page-header-asymmetric h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.page-header-asymmetric p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story-offset {
    padding: 100px 60px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.story-image-left {
    width: 450px;
    margin-left: 5%;
}

.story-image-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e0e0e0;
}

.story-content-right {
    flex: 1;
}

.story-content-right h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.story-content-right p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-irregular {
    padding: 100px 60px;
    background-color: var(--light-bg);
}

.values-irregular h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

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

.value-item {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 30px);
    min-width: 250px;
}

.value-item.item-1 {
    margin-top: 0;
}

.value-item.item-2 {
    margin-top: 40px;
}

.value-item.item-3 {
    margin-top: -20px;
}

.value-item h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-item p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

.team-offset-layout {
    padding: 100px 60px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.team-content-irregular {
    flex: 1;
    margin-left: 8%;
}

.team-content-irregular h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.team-content-irregular p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.team-image-shift {
    width: 420px;
    margin-top: 40px;
}

.team-image-shift img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e0e0e0;
}

.cta-section-asymmetric {
    padding: 100px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.cta-section-asymmetric h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

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

.services-detailed-asymmetric {
    padding: 80px 60px;
}

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

.service-detail-item.layout-1 {
    flex-direction: row;
}

.service-detail-item.layout-2 {
    flex-direction: row-reverse;
}

.service-image-offset {
    width: 45%;
}

.service-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-info-shift {
    flex: 1;
}

.service-info-shift h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-info-shift p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-includes {
    list-style: none;
    margin-bottom: 30px;
}

.service-includes li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #555;
    font-size: 1.05rem;
}

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

.service-price-cta {
    display: flex;
    align-items: center;
    gap: 25px;
}

.price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-note-asymmetric {
    padding: 80px 60px;
    background-color: var(--light-bg);
    text-align: center;
}

.service-note-asymmetric h3 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-note-asymmetric p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-layout-asymmetric {
    padding: 80px 60px;
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.contact-info-offset {
    flex: 1;
    margin-left: 8%;
}

.contact-block {
    margin-bottom: 50px;
}

.contact-block h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-detail {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.contact-detail-non-clickable {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    user-select: text;
    cursor: text;
}

.contact-visual-shift {
    width: 420px;
    margin-top: -60px;
}

.contact-visual-shift img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e0e0e0;
}

.contact-cta-irregular {
    padding: 80px 60px;
    background-color: var(--light-bg);
    text-align: center;
}

.contact-cta-irregular h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-cta-irregular p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-page-asymmetric {
    padding: 100px 60px;
    display: flex;
    align-items: center;
    gap: 80px;
    min-height: 70vh;
}

.thanks-content-offset {
    flex: 1;
    margin-left: 8%;
}

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

.thanks-content-offset p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.submission-details {
    background-color: #f0f8ff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 35px;
    border-left: 4px solid var(--secondary-color);
}

.selected-service-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.selected-service-info p {
    margin: 8px 0;
}

.next-steps {
    margin-bottom: 35px;
}

.next-steps h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
}

.thanks-visual-shift {
    width: 420px;
    margin-top: 40px;
}

.thanks-visual-shift img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e0e0e0;
}

.legal-page-asymmetric {
    padding: 80px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page-asymmetric h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .hero-image-overlap {
        width: 50%;
        right: -5%;
    }

    .floating-nav {
        top: 40px;
        right: 20px;
        padding: 15px;
    }
}

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

    .hero-content-offset {
        margin-left: 0;
        text-align: center;
    }

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

    .intro-asymmetric,
    .about-story-offset,
    .team-offset-layout,
    .contact-layout-asymmetric,
    .thanks-page-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .intro-text-block,
    .team-content-irregular,
    .contact-info-offset,
    .thanks-content-offset {
        margin-left: 0;
    }

    .intro-visual-offset,
    .story-image-left,
    .team-image-shift,
    .contact-visual-shift,
    .thanks-visual-shift {
        width: 100%;
        margin-top: 0;
    }

    .service-detail-item {
        flex-direction: column !important;
    }

    .service-image-offset {
        width: 100%;
    }

    .service-card {
        width: calc(50% - 15px);
    }

    .floating-nav {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        border-radius: 0;
    }

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

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

    .section-title-offset {
        font-size: 2.2rem;
        margin-left: 0;
    }

    .service-card {
        width: 100%;
    }

    .service-card.card-1,
    .service-card.card-2,
    .service-card.card-3,
    .service-card.card-4,
    .service-card.card-5,
    .service-card.card-6 {
        margin-top: 0;
    }

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

    .footer-block-1,
    .footer-block-2,
    .footer-block-3 {
        margin-top: 0;
    }

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

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

    .cookie-btn {
        width: 100%;
    }

    .form-wrapper-offset {
        margin-left: 0;
        padding: 30px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .service-price-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}