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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c7a4b;
}

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

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c7a4b;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #2c7a4b;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #245c3a;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.hero-visual {
    margin-top: 80px;
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #2c7a4b;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    padding: 4rem 2rem;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    max-width: 900px;
    line-height: 1.1;
}

.hero-overlay p {
    font-size: 1.4rem;
    max-width: 700px;
    opacity: 0.95;
}

.story-intro {
    padding: 5rem 2rem;
    background-color: #f5f5f5;
}

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

.story-content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.problem-amplification {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.split-image {
    flex: 1;
    background-color: #e0e0e0;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.split-content p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #444;
}

.insight-reveal {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.insight-container {
    max-width: 1400px;
    margin: 0 auto;
}

.insight-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.insight-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.insight-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.insight-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background-color: #ddd;
}

.insight-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c7a4b;
}

.insight-card p {
    padding: 0 1.5rem 1.5rem;
    color: #555;
    line-height: 1.6;
}

.trust-building {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.trust-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.trust-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #444;
    max-width: 900px;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.trust-point h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #2c7a4b;
}

.trust-point p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.testimonial-inline {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.testimonial-visual {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #333;
}

.testimonial-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 2rem;
}

.testimonial-overlay blockquote {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 8px;
}

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

.testimonial-overlay cite {
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 600;
    color: #ffd700;
}

.benefits-reveal {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.benefits-container h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
}

.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.benefit-major h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.benefit-major p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.95;
}

.services-pricing-reveal {
    padding: 5rem 2rem;
    background-color: #f5f5f5;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    position: relative;
}

.pricing-card.featured {
    border-color: #2c7a4b;
    box-shadow: 0 8px 24px rgba(44, 122, 75, 0.2);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2c7a4b;
    color: #ffffff;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c7a4b;
    font-weight: bold;
}

.price-display {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c7a4b;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
    font-style: italic;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background-color: #2c7a4b;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #245c3a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 122, 75, 0.3);
}

.cta-primary {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-align: center;
}

.cta-container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
}

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

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

.form-field label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-field input,
.form-field textarea {
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #2c7a4b;
}

.form-field input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.btn-submit {
    padding: 1.2rem;
    background-color: #2c7a4b;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #245c3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 122, 75, 0.3);
}

.final-testimonials {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: #2c7a4b;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fff9e6;
    border-top: 3px solid #ffd700;
}

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

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

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.about-hero {
    margin-top: 80px;
}

.about-hero-visual {
    position: relative;
    height: 60vh;
    overflow: hidden;
    background-color: #2c7a4b;
}

.about-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.our-story {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.story-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-text p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #444;
    line-height: 1.7;
}

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

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.our-approach {
    padding: 5rem 2rem;
    background-color: #f5f5f5;
}

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

.approach-content h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

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

.approach-item {
    flex: 1;
    min-width: 300px;
}

.approach-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c7a4b;
}

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

.team-values {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.values-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.values-container p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.7;
}

.our-impact {
    padding: 5rem 2rem;
    background-color: #2c7a4b;
}

.impact-stats {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
    color: #ffffff;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

.why-trust-us {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.trust-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.trust-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.trust-text {
    flex: 1.2;
}

.trust-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.trust-text p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #444;
    line-height: 1.7;
}

.services-hero {
    margin-top: 80px;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c7a4b 0%, #1a4d2e 100%);
    color: #ffffff;
}

.services-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.services-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.service-detail-item {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-item:last-child {
    border-bottom: none;
}

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

.service-detail-visual {
    flex: 1;
    background-color: #e0e0e0;
}

.service-detail-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c7a4b;
    margin-bottom: 1.5rem;
}

.service-detail-content > p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c7a4b;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c7a4b;
    font-weight: bold;
    font-size: 1.3rem;
}

.process-overview {
    padding: 5rem 2rem;
    background-color: #f5f5f5;
}

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

.process-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c7a4b;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

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

.cta-services {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

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

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #2c7a4b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #245c3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 122, 75, 0.3);
}

.contact-hero {
    margin-top: 80px;
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

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

.contact-intro h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-intro p {
    font-size: 1.3rem;
    color: #555;
}

.contact-information {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1.2;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c7a4b;
}

.contact-item p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 0.3rem;
}

.contact-note {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
}

.contact-visual {
    flex: 1;
    background-color: #e0e0e0;
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.what-to-expect {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

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

.expect-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

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

.expect-item {
    flex: 1;
    min-width: 300px;
}

.expect-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c7a4b;
}

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

.faq-contact {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.faq-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c7a4b;
}

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

.thanks-hero {
    margin-top: 80px;
    padding: 5rem 2rem;
    background-color: #f5f5f5;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c7a4b;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 3rem;
}

.confirmation-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.confirmation-message {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.confirmation-message p {
    font-size: 1.1rem;
    color: #333;
}

.next-steps {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.steps-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2c7a4b;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.timeline-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.preparation-tips {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

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

.tips-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a1a1a;
}

.tips-content > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
}

.tips-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.tip-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tip-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c7a4b;
}

.tip-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.resources-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.resources-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.resources-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.resources-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.resource-link {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2c7a4b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background-color: #245c3a;
    transform: translateY(-2px);
}

.contact-reminder {
    padding: 4rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

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

.reminder-content p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.contact-email {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
}

.office-hours {
    font-size: 1rem;
    opacity: 0.85;
}

.legal-page {
    margin-top: 80px;
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.last-updated {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c7a4b;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #444;
    line-height: 1.7;
}

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

.legal-content ul li {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #2c7a4b;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #245c3a;
}

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

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

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .split-visual,
    .story-layout,
    .trust-layout,
    .contact-layout {
        flex-direction: column;
    }

    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
    }

    .pricing-grid,
    .insight-grid,
    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }

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