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

:root {
    --primary-dark: #1a1a1a;
    --primary-light: #ffffff;
    --accent-color: #2c5f4f;
    --text-gray: #666666;
    --border-light: #e0e0e0;
    --overlay-dark: rgba(0, 0, 0, 0.6);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--primary-dark);
    background: var(--primary-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: var(--primary-light);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    text-align: center;
    margin: 0;
}

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

.cookie-btn {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

.cookie-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

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

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

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

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

.nav-cta {
    background: var(--primary-dark);
    color: var(--primary-light);
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: var(--overlay-dark);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--primary-light);
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-cta {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-light);
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: scale(1.05);
}

.hook-section {
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hook-wrapper {
    flex: 1;
}

.hook-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.hook-text {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.hook-image-wrapper {
    flex: 1;
}

.hook-image {
    width: 100%;
    height: auto;
    display: block;
}

.story-section {
    background: #f8f8f8;
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.story-block {
    flex: 1;
    padding: 0 2rem;
    max-width: 600px;
}

.story-block h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.story-block p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.story-visual {
    flex: 1;
}

.story-image {
    width: 100%;
    height: auto;
    display: block;
}

.insight-reveal {
    padding: 6rem 2rem;
    background: var(--primary-dark);
    color: var(--primary-light);
}

.insight-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.insight-container h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.insight-highlight {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    font-weight: 300;
    font-style: italic;
}

.insight-container p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.trust-builder {
    padding: 6rem 2rem;
    background: var(--primary-light);
}

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

.trust-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.trust-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.trust-card {
    flex: 1;
    max-width: 350px;
    padding: 2rem;
    background: #f8f8f8;
}

.trust-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.trust-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.testimonial-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.testimonial-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.testimonial-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.testimonial-overlay blockquote {
    max-width: 800px;
    text-align: center;
    color: var(--primary-light);
}

.testimonial-overlay p {
    font-size: 1.6rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-overlay cite {
    font-size: 1.1rem;
    font-style: normal;
    opacity: 0.9;
}

.problem-amplify {
    padding: 6rem 2rem;
    background: #f0f0f0;
}

.amplify-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.amplify-wrapper h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.cost-breakdown {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.cost-item {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.cost-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.cost-item p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.solution-intro {
    padding: 6rem 2rem;
    background: var(--primary-light);
}

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

.solution-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.solution-lead {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
}

.solution-content p {
    font-size: 1.15rem;
    color: var(--text-gray);
    text-align: center;
    line-height: 1.8;
}

.services-visual {
    padding: 5rem 2rem;
    background: #f8f8f8;
}

.services-header {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.services-intro {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.services-showcase {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    gap: 2rem;
    background: var(--primary-light);
    overflow: hidden;
}

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

.service-image-wrapper {
    flex: 1;
    min-height: 400px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-details p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-select {
    background: var(--primary-dark);
    color: var(--primary-light);
    padding: 1rem 2.5rem;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.testimonial-grid {
    padding: 6rem 2rem;
    background: var(--primary-light);
}

.testimonial-grid h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
}

.testimonial-item {
    flex: 1;
    padding: 2.5rem;
    background: #f8f8f8;
    border-left: 4px solid var(--accent-color);
}

.testimonial-item p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-item cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-dark);
}

.urgency-block {
    padding: 4rem 2rem;
    background: var(--accent-color);
    color: var(--primary-light);
}

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

.urgency-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.urgency-note {
    font-weight: 700;
    font-size: 1.3rem;
}

.form-section {
    padding: 6rem 2rem;
    background: #f0f0f0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--primary-light);
    padding: 3rem;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-light);
    font-size: 1rem;
    font-family: inherit;
}

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

.form-submit {
    background: var(--primary-dark);
    color: var(--primary-light);
    padding: 1.2rem;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.final-cta-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.final-cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.final-cta-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.65);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.final-cta-overlay h2 {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.final-cta-overlay p {
    font-size: 1.4rem;
    color: var(--primary-light);
    margin-bottom: 2rem;
}

.final-cta-btn {
    background: var(--accent-color);
    color: var(--primary-light);
    padding: 1.3rem 3.5rem;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.final-cta-btn:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: scale(1.05);
}

.main-footer {
    background: var(--primary-dark);
    color: var(--primary-light);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

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

.sticky-cta-btn {
    background: var(--accent-color);
    color: var(--primary-light);
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.about-hero {
    padding: 8rem 2rem 4rem;
    background: #f8f8f8;
    position: relative;
    margin-top: 70px;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 3rem;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.about-subtitle {
    font-size: 1.4rem;
    color: var(--text-gray);
}

.about-hero-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.about-story {
    padding: 6rem 2rem;
    background: var(--primary-light);
}

.story-container {
    max-width: 800px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.story-container p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.philosophy-section {
    padding: 6rem 2rem;
    background: #f8f8f8;
}

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

.philosophy-wrapper h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.philosophy-grid {
    display: flex;
    gap: 2.5rem;
}

.philosophy-point {
    flex: 1;
    padding: 2rem;
}

.philosophy-point h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.philosophy-point p {
    color: var(--text-gray);
    line-height: 1.7;
}

.team-section {
    padding: 6rem 2rem;
    background: var(--primary-light);
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--text-gray);
    font-size: 1.15rem;
}

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

.team-member {
    flex: 1;
    text-align: center;
}

.team-photo {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.team-member p {
    color: var(--text-gray);
    line-height: 1.6;
}

.process-overview {
    padding: 6rem 2rem;
    background: #f8f8f8;
}

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

.process-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.process-intro {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.15rem;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    gap: 2.5rem;
}

.process-step {
    flex: 1;
    padding: 2rem;
    background: var(--primary-light);
}

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-gray);
    line-height: 1.7;
}

.about-cta {
    padding: 5rem 2rem;
    background: var(--primary-dark);
    text-align: center;
}

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

.about-cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

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

.about-cta-btn {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-light);
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.about-cta-btn:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: scale(1.05);
}

.services-page-hero {
    padding: 8rem 2rem 4rem;
    background: #f8f8f8;
    text-align: center;
    margin-top: 70px;
}

.services-page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.services-page-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

.services-detail-section {
    padding: 4rem 2rem;
    background: var(--primary-light);
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    background: #f8f8f8;
    position: relative;
}

.service-detail-card.featured-service {
    border: 3px solid var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--primary-light);
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    z-index: 10;
}

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-includes h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style-position: inside;
    margin-bottom: 2rem;
}

.service-includes li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.service-pricing-block {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.service-detail-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.service-detail-select {
    background: var(--primary-dark);
    color: var(--primary-light);
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.services-guarantee {
    padding: 4rem 2rem;
    background: var(--primary-dark);
    color: var(--primary-light);
}

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

.guarantee-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.guarantee-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.guarantee-note {
    font-weight: 700;
    font-size: 1.3rem;
}

.services-faq {
    padding: 5rem 2rem;
    background: #f8f8f8;
}

.services-faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.faq-item {
    flex: 1 1 45%;
    padding: 2rem;
    background: var(--primary-light);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

.services-cta {
    padding: 5rem 2rem;
    background: var(--primary-light);
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.services-cta-btn {
    display: inline-block;
    background: var(--primary-dark);
    color: var(--primary-light);
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.services-cta-btn:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

.contact-hero {
    padding: 8rem 2rem 4rem;
    background: #f8f8f8;
    text-align: center;
    margin-top: 70px;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
}

.contact-info-section {
    padding: 5rem 2rem;
    background: var(--primary-light);
}

.contact-details {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block {
    padding: 2.5rem;
    background: #f8f8f8;
}

.contact-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-address,
.contact-email {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-email a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-email a:hover {
    text-decoration: underline;
}

.contact-note {
    color: var(--text-gray);
    font-style: italic;
    margin-top: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.hours-day {
    font-weight: 600;
}

.hours-time {
    color: var(--text-gray);
}

.contact-map-section {
    padding: 0;
    background: var(--primary-light);
}

.map-placeholder {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-map {
    width: 100%;
    height: auto;
    display: block;
}

.contact-faq-section {
    padding: 5rem 2rem;
    background: #f8f8f8;
}

.contact-faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.contact-faq-item {
    flex: 1 1 45%;
    padding: 2rem;
    background: var(--primary-light);
}

.contact-faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-cta-section {
    padding: 5rem 2rem;
    background: var(--primary-dark);
}

.contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

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

.contact-cta-btn {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-light);
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-cta-btn:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: scale(1.05);
}

.thanks-hero {
    padding: 10rem 2rem 5rem;
    background: #f8f8f8;
    text-align: center;
    margin-top: 70px;
}

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

.service-confirmation {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 1rem;
}

.thanks-next-steps {
    padding: 5rem 2rem;
    background: var(--primary-light);
}

.thanks-next-steps h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.next-steps-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
}

.next-step {
    flex: 1;
    padding: 2.5rem;
    background: #f8f8f8;
    text-align: center;
}

.step-icon {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.next-step h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.next-step p {
    color: var(--text-gray);
    line-height: 1.7;
}

.thanks-resources {
    padding: 5rem 2rem;
    background: #f8f8f8;
}

.resources-content {
    max-width: 1000px;
    margin: 0 auto;
}

.resources-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.resources-content > p {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.resources-list {
    display: flex;
    gap: 2.5rem;
}

.resource-item {
    flex: 1;
    padding: 2rem;
    background: var(--primary-light);
}

.resource-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.resource-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

.thanks-contact {
    padding: 4rem 2rem;
    background: var(--primary-light);
}

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

.thanks-contact-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.thanks-contact-content p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.thanks-contact-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.thanks-contact-content a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 6rem 2rem 4rem;
    background: var(--primary-light);
    margin-top: 70px;
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.legal-updated {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.legal-section p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.legal-section li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-section a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 1rem;
    }

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

    .hook-section,
    .story-section {
        flex-direction: column;
    }

    .trust-grid,
    .testimonials-wrapper,
    .cost-breakdown,
    .philosophy-grid,
    .team-grid,
    .process-steps,
    .resources-list,
    .next-steps-grid {
        flex-direction: column;
    }

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

    .service-detail-card {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

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

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

    .faq-grid,
    .contact-faq-grid {
        flex-direction: column;
    }

    .faq-item,
    .contact-faq-item {
        flex: 1 1 100%;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .sticky-cta-btn {
        width: 100%;
    }
}
