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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #c9a961;
    --text-color: #333;
    --light-gray: #f4f4f4;
    --border-color: #ddd;
    --white: #fff;
    --dark-overlay: rgba(0, 0, 0, 0.6);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 16px;
    overflow-x: hidden;
}

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

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-full-bleed {
    width: 100%;
    padding: 0;
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    max-width: 90%;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    list-style: none;
    display: none;
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    padding: 10px 0;
}

.nav-menu a {
    color: var(--primary-color);
    font-weight: 500;
}

.hero-overlay {
    margin-top: 80px;
    position: relative;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 800px;
    z-index: 2;
}

.hero-overlay-text::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: var(--dark-overlay);
    z-index: -1;
    border-radius: 10px;
}

.hero-overlay-text h1 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
}

.intro-flow {
    padding: 100px 0;
    background: var(--light-gray);
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 30px;
    color: #444;
}

.intro-text.emphasis {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 50px;
}

.insight-block {
    padding: 120px 0;
    background: var(--white);
}

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.insight-image img {
    width: 100%;
    border-radius: 8px;
}

.insight-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.insight-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.callout-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
    padding: 30px;
    background: var(--light-gray);
    border-left: 4px solid var(--accent-color);
    margin-top: 40px;
}

.story-section {
    padding: 100px 0;
    background: var(--secondary-color);
    color: var(--white);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
}

.story-section p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.inline-cta {
    margin-top: 50px;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #b89650;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-left: 15px;
}

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

.problem-amplification {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.problem-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.problem-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.problem-card h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.problem-card p {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-inline {
    padding: 80px 0;
    background: var(--light-gray);
}

blockquote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.8;
    padding: 40px;
    background: var(--white);
    border-left: 5px solid var(--accent-color);
    margin: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
    color: var(--accent-color);
}

.trust-building {
    padding: 120px 0;
    background: var(--white);
}

.trust-split {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.trust-left h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.trust-left p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.trust-list {
    list-style: none;
    margin-top: 30px;
}

.trust-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 1.1rem;
}

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

.trust-right img {
    width: 100%;
    border-radius: 8px;
}

.benefits-reveal {
    padding: 100px 0;
    background: var(--light-gray);
}

.centered-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.benefits-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.cta-block-primary {
    padding: 100px 0;
    background: var(--accent-color);
}

.cta-content-centered {
    text-align: center;
    color: var(--white);
}

.cta-content-centered h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content-centered p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.btn-large {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 22px 50px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.services-pricing {
    padding: 100px 0;
    background: var(--white);
}

.section-title-centered {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 60px;
    color: #555;
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pricing-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--accent-color);
    background: var(--white);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.2);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-description {
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.7;
    color: #555;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 25px;
}

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

.service-features li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1rem;
    color: #555;
}

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

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

.btn-select-service:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.form-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.form-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #555;
}

.main-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.selected-service-box {
    background: var(--accent-color);
    color: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.selected-service-box p {
    margin-bottom: 5px;
}

.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 select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px 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 select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: var(--white);
    padding: 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 12px;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: var(--accent-color);
}

.urgency-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.urgency-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 12px;
    border: 2px solid var(--accent-color);
    text-align: center;
}

.urgency-box h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
}

.urgency-box p {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.8;
}

.urgency-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: 30px 0;
}

.site-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

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

.footer-col a {
    color: var(--white);
    transition: color 0.3s ease;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 20px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

.sticky-cta.show {
    display: block;
}

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

.sticky-cta-content span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-sticky {
    background: var(--accent-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #b89650;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    max-width: 500px;
    width: 90%;
    display: none;
}

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

.cookie-content p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    flex: 1;
    padding: 12px 20px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

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

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

.btn-reject {
    background: var(--light-gray);
    color: var(--text-color);
}

.btn-reject:hover {
    background: #ddd;
}

.about-hero,
.services-hero,
.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    margin-top: 80px;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

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

.story-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.story-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.inline-quote {
    font-size: 1.3rem;
    font-style: italic;
    padding: 30px;
    background: var(--light-gray);
    border-left: 4px solid var(--accent-color);
    margin: 40px 0;
    line-height: 1.7;
}

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

.mission-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.mission-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: center;
}

.approach-section {
    padding: 100px 0;
    background: var(--white);
}

.approach-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.approach-card {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 12px;
}

.approach-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.approach-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.team-philosophy {
    padding: 100px 0;
    background: var(--secondary-color);
    color: var(--white);
}

.team-philosophy h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.team-philosophy p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.emphasis-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 40px;
}

.values-section {
    padding: 100px 0;
    background: var(--white);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    padding: 30px;
    background: var(--light-gray);
    border-radius: 12px;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent-color);
}

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

.cta-about,
.cta-box {
    padding: 80px 0;
    background: var(--light-gray);
}

.cta-box {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.services-intro {
    padding: 60px 0;
    background: var(--light-gray);
}

.intro-large {
    font-size: 1.25rem;
    line-height: 1.9;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #444;
}

.services-detail {
    padding: 80px 0;
    background: var(--white);
}

.service-full {
    margin-bottom: 60px;
    background: var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.service-full.featured-service {
    background: var(--white);
    border: 3px solid var(--accent-color);
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 50px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
}

.service-header {
    padding: 40px;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-full.featured-service .service-header {
    background: var(--light-gray);
}

.service-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.service-body {
    padding: 40px;
}

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

.service-description-full h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.detailed-features {
    list-style: none;
    margin-bottom: 30px;
}

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

.detailed-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-cta {
    margin-top: 30px;
}

.comparison-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.comparison-item {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
}

.comparison-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.comparison-item p {
    font-size: 1.05rem;
    color: #555;
}

.comparison-note {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    font-style: italic;
    color: #666;
}

.process-section {
    padding: 80px 0;
    background: var(--white);
}

.process-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-num {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
}

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

.process-step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.contact-content {
    padding: 80px 0;
    background: var(--white);
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent-color);
}

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

.contact-note {
    margin-top: 10px;
    font-size: 0.95rem;
    font-style: italic;
    color: #777;
}

.contact-form-wrapper p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.7;
    color: #555;
}

.contact-faq {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-faq h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

.faq-item {
    background: var(--white);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.legal-page {
    padding: 120px 0 80px;
    background: var(--white);
    margin-top: 80px;
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.last-updated {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

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

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

.legal-table,
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.legal-table th,
.legal-table td,
.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.legal-table th,
.cookie-table th {
    background: var(--light-gray);
    font-weight: 700;
    color: var(--primary-color);
}

.back-link {
    margin-top: 60px;
    text-align: center;
}

.back-link a {
    font-size: 1.1rem;
    font-weight: 600;
}

.thanks-hero {
    padding: 120px 0;
    background: var(--light-gray);
    margin-top: 80px;
}

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

.checkmark-circle {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.checkmark {
    width: 30px;
    height: 30px;
    border-bottom: 4px solid var(--white);
    border-right: 4px solid var(--white);
    transform: rotate(45deg);
    margin-bottom: 10px;
}

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

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
}

.service-confirmation {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 50px;
    display: none;
}

.service-confirmation p {
    font-size: 1.1rem;
    margin: 0;
}

.next-steps {
    margin: 60px 0;
}

.next-steps h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: left;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

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

.step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.thanks-cta {
    margin-top: 50px;
}

.thanks-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #555;
}

@media (min-width: 768px) {
    .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        padding: 0;
        background: transparent;
        box-shadow: none;
        gap: 30px;
    }

    .nav-toggle {
        display: none;
    }

    .floating-nav {
        min-width: auto;
        gap: 50px;
    }

    .hero-overlay-text h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
    }

    .insight-grid {
        flex-direction: row;
        align-items: center;
    }

    .insight-image,
    .insight-content {
        flex: 1;
    }

    .problem-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .problem-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .trust-split {
        flex-direction: row;
        align-items: center;
    }

    .trust-left,
    .trust-right {
        flex: 1;
    }

    .benefits-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-card {
        flex: 1 1 calc(50% - 15px);
    }

    .pricing-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .pricing-card {
        flex: 1 1 calc(50% - 20px);
    }

    .testimonials-grid {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1;
    }

    .footer-grid {
        flex-direction: row;
    }

    .footer-col {
        flex: 1;
    }

    .story-grid {
        flex-direction: row;
        align-items: center;
    }

    .story-content,
    .story-image {
        flex: 1;
    }

    .approach-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .approach-card {
        flex: 1 1 calc(50% - 15px);
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1 1 calc(50% - 15px);
    }

    .comparison-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .comparison-item {
        flex: 1 1 calc(50% - 12.5px);
    }

    .contact-layout {
        flex-direction: row;
    }

    .contact-info,
    .contact-form-wrapper {
        flex: 1;
    }

    .steps-grid {
        flex-direction: row;
    }

    .step {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .benefit-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .approach-card {
        flex: 1 1 calc(25% - 22.5px);
    }

    .value-item {
        flex: 1 1 calc(25% - 22.5px);
    }
}