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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --light-bg: #f5f5f5;
    --text-dark: #2d2d2d;
    --text-light: #666;
    --white: #ffffff;
}

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

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

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.nav-right a:hover {
    color: var(--highlight-color);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    background: var(--light-bg);
    border-radius: 4px;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: center;
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
}

.hero-content-left {
    flex: 1;
    max-width: 600px;
    padding-right: 3rem;
    z-index: 10;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--highlight-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233,69,96,0.3);
}

.hero-visual-right {
    flex: 1;
    position: relative;
    margin-left: -5%;
}

.hero-visual-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    object-fit: cover;
    background-color: var(--accent-color);
}

.story-intro {
    padding: 6rem 5%;
    background: var(--white);
}

.intro-block-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.intro-block-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-block-narrow p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.problem-reveal {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.split-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.split-text {
    flex: 1.2;
}

.split-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.split-image-offset {
    flex: 1;
    transform: translateY(30px);
}

.split-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: var(--light-bg);
}

.insight-section {
    padding: 5rem 5%;
    background: var(--white);
}

.insight-card-stack {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.insight-card {
    padding: 2.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--text-light);
}

.insight-card.highlight {
    background: var(--accent-color);
    color: var(--white);
    border-left-color: var(--highlight-color);
    transform: translateX(40px);
}

.insight-card h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.insight-card.highlight h4 {
    color: var(--white);
}

.insight-card p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.insight-card.highlight p {
    color: rgba(255,255,255,0.9);
}

.trust-layer {
    padding: 5rem 5%;
    background: var(--secondary-color);
}

.testimonial-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-weight: 600;
    color: var(--accent-color);
}

.benefits-reveal {
    padding: 6rem 5%;
    background: var(--white);
}

.benefits-reveal h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.benefits-asymmetric {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.benefit-large {
    flex: 1 1 60%;
    background: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    padding: 2rem;
}

.benefit-large img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background-color: var(--accent-color);
}

.benefit-large h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-large p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.benefit-small {
    flex: 1 1 calc(40% - 2rem);
    background: var(--accent-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

.benefit-small h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.benefit-small p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
}

.service-selection-area {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.service-selection-area h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.service-cards-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:nth-child(even) {
    transform: translateY(20px);
}

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

.service-card.featured {
    border: 2px solid var(--highlight-color);
}

.service-card .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--highlight-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.price-tag {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--highlight-color);
    margin-bottom: 1.5rem;
}

.select-service {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-service:hover {
    background: var(--primary-color);
}

.contact-form-section {
    padding: 6rem 5%;
    background: var(--white);
}

.form-wrapper-asymmetric {
    max-width: 900px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-form {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 8px;
}

.form-row {
    margin-bottom: 1.5rem;
}

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

.form-row input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.form-row input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.service-display {
    padding: 1rem;
    background: var(--white);
    border-radius: 6px;
    border: 2px solid var(--highlight-color);
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.disclaimer-section {
    padding: 3rem 5%;
    background: var(--light-bg);
    text-align: center;
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

.footer-grid {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 0.7rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1.5rem 5%;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--highlight-color);
}

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

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

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

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.page-hero-offset {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    text-align: center;
}

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

.about-content {
    padding: 5rem 5%;
    background: var(--white);
}

.about-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text-wide {
    flex: 1.5;
}

.about-text-wide h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text-wide p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.3rem;
}

.about-image-small {
    flex: 1;
}

.about-image-small img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: var(--light-bg);
}

.values-section {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.values-cards {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    font-size: 1rem;
    color: var(--text-light);
}

.team-approach {
    padding: 5rem 5%;
    background: var(--white);
}

.approach-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.approach-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.approach-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: var(--light-bg);
}

.approach-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.3rem;
    text-align: left;
}

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

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-image-left,
.service-image-right {
    flex: 1;
}

.service-image-left img,
.service-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: var(--accent-color);
}

.service-text-right,
.service-text-left {
    flex: 1;
}

.service-text-right h2,
.service-text-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-text-right p,
.service-text-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-text-right ul,
.service-text-left ul {
    margin-bottom: 1.5rem;
}

.service-text-right li,
.service-text-left li {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.7rem;
    margin-left: 1.5rem;
}

.price-display {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--highlight-color);
    margin-bottom: 1.5rem;
}

.cta-service {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-service:hover {
    background: var(--primary-color);
}

.services-cta-section {
    padding: 4rem 5%;
    background: var(--accent-color);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.cta-box h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--highlight-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #d13651;
}

.contact-info-section {
    padding: 5rem 5%;
    background: var(--white);
}

.contact-layout {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
}

.contact-block {
    margin-bottom: 3rem;
}

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

.contact-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.email-display {
    font-weight: 600;
    color: var(--accent-color);
}

.note-text {
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: var(--light-bg);
}

.location-info {
    padding: 4rem 5%;
    background: var(--light-bg);
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.location-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.location-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.3rem;
}

.thanks-hero {
    padding: 8rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 900px;
    text-align: center;
    color: var(--white);
}

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

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.service-confirmation {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.service-confirmation p {
    font-size: 1.2rem;
    color: var(--white);
}

.thanks-next-steps {
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
}

.step-number {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: var(--highlight-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.step p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.thanks-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

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

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

.legal-page {
    padding: 5rem 5%;
    background: var(--white);
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.updated-date {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.9rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-content li {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookie-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-right {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-offset {
        flex-direction: column;
        padding: 3rem 5%;
    }

    .hero-content-left {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .hero-content-left h1 {
        font-size: 2.5rem;
    }

    .hero-visual-right {
        margin-left: 0;
    }

    .split-layout,
    .about-split,
    .contact-layout,
    .service-detail-card {
        flex-direction: column;
    }

    .testimonial-grid,
    .values-cards,
    .steps-grid {
        flex-direction: column;
    }

    .benefits-asymmetric {
        flex-direction: column;
    }

    .benefit-large,
    .benefit-small {
        flex: 1 1 100%;
    }

    .service-cards-offset {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        transform: none;
    }

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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