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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #f4a261;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #2c3e50;
    --accent: #e76f51;
    --border-color: #e0e0e0;
    --success: #4CAF50;
}

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

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

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

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

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

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

.navbar {
    background-color: var(--text-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-light);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: 0.3s;
}

.hero-overlay {
    position: relative;
    min-height: 600px;
}

.hero-image {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-overlay-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
    max-width: 800px;
    padding: 40px 20px;
}

.hero-overlay-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtext {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    background-color: var(--accent);
    color: var(--text-white);
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 111, 81, 0.3);
}

.cta-hero:hover {
    background-color: #d65a3d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 111, 81, 0.4);
    color: var(--text-white);
}

.story-intro {
    padding: 80px 20px;
    background-color: var(--text-white);
}

.story-intro h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.3;
}

.story-intro p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.problem-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.problem-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.problem-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.problem-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.problem-list li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 20px;
}

.problem-image {
    flex: 1;
}

.problem-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.insight-reveal {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), #1e4a3b);
    color: var(--text-white);
    text-align: center;
}

.insight-reveal h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.insight-reveal p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.pillars-section {
    padding: 80px 20px;
    background-color: var(--text-white);
}

.pillars-cards {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.pillar-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pillar-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.pillar-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.story-continuation {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.story-continuation p {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--text-light);
}

.testimonial-inline {
    background-color: var(--text-white);
    padding: 30px;
    border-left: 4px solid var(--accent);
    margin: 40px 0;
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.social-proof {
    padding: 80px 20px;
    background-color: var(--text-white);
    text-align: center;
}

.social-proof h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.testimonial-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

.benefits-reveal {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.benefits-reveal h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

.benefits-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.benefits-list {
    flex: 1;
}

.benefit-item {
    margin-bottom: 35px;
}

.benefit-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
}

.benefits-image {
    flex: 1;
}

.benefits-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.services-reveal {
    padding: 80px 20px;
    background-color: var(--text-white);
}

.services-reveal h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    flex: 0 0 calc(50% - 15px);
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

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

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 25px 15px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 25px 15px;
    line-height: 1.5;
}

.service-features {
    list-style: none;
    margin: 20px 25px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: var(--text-light);
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 25px;
    text-align: center;
}

.select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background-color: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #1e4a3b;
    transform: translateY(-2px);
}

.form-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
}

.form-section > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form {
    background-color: var(--text-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-top: 30px;
}

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

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

.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: 16px;
    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(--primary-color);
}

.selected-service-display {
    background-color: var(--bg-light);
    padding: 15px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#service-name-display {
    font-weight: 600;
    color: var(--text-dark);
}

#service-price-display {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--accent);
    color: var(--text-white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.urgency-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e4a3b, var(--primary-color));
    color: var(--text-white);
    text-align: center;
}

.urgency-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.urgency-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-urgency {
    display: inline-block;
    background-color: var(--accent);
    color: var(--text-white);
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.cta-urgency:hover {
    background-color: #d65a3d;
    transform: translateY(-2px);
    color: var(--text-white);
}

.final-reassurance {
    padding: 80px 20px;
    background-color: var(--text-white);
    text-align: center;
}

.final-reassurance h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.final-reassurance p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

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

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

.sticky-cta-text {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
}

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

.sticky-cta-btn:hover {
    background-color: #d65a3d;
    transform: translateY(-2px);
    color: var(--text-white);
}

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

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--text-white);
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-cookie.accept:hover {
    background-color: #45a049;
}

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

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), #1e4a3b);
    color: var(--text-white);
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.about-story {
    padding: 80px 20px;
    background-color: var(--text-white);
}

.story-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.story-content img {
    flex: 1;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.story-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.mission-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.mission-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.mission-section p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 20px;
    background-color: var(--text-white);
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 0 0 calc(50% - 15px);
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 10px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.team-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    flex: 0 0 calc(25% - 23px);
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.team-member p {
    font-size: 15px;
    color: var(--text-light);
}

.achievements-section {
    padding: 80px 20px;
    background-color: var(--text-white);
}

.achievements-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

.achievements-grid {
    display: flex;
    gap: 40px;
}

.achievement {
    flex: 1;
    text-align: center;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 10px;
}

.achievement-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.achievement p {
    font-size: 16px;
    color: var(--text-light);
}

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), #1e4a3b);
    color: var(--text-white);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    background-color: var(--accent);
    color: var(--text-white);
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #d65a3d;
    transform: translateY(-2px);
    color: var(--text-white);
}

.services-list {
    padding: 60px 20px;
}

.service-detail {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

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

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

.service-detail-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-detail-content {
    flex: 1;
    position: relative;
}

.popular-badge {
    display: inline-block;
    background-color: var(--accent);
    color: var(--text-white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-detail-content h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-description {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-detail-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.service-detail-content ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.service-price-box {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-service {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 14px 35px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #1e4a3b;
    transform: translateY(-2px);
    color: var(--text-white);
}

.services-intro {
    padding: 80px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.services-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.services-intro p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.guarantee-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), #1e4a3b);
    color: var(--text-white);
    text-align: center;
}

.guarantee-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.guarantee-section p {
    font-size: 18px;
    line-height: 1.7;
}

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

.process-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

.process-steps {
    display: flex;
    gap: 30px;
}

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-content {
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    font-size: 14px;
    font-style: italic;
    margin-top: 5px;
}

.contact-map {
    flex: 1;
    position: relative;
}

.contact-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0,0,0,0.7);
    color: var(--text-white);
    padding: 15px 20px;
    border-radius: 6px;
}

.faq-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    background-color: var(--text-white);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.legal-content {
    padding: 60px 20px 80px;
    background-color: var(--text-white);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 10px;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: var(--text-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cookies-table thead {
    background-color: var(--primary-color);
    color: var(--text-white);
}

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

.cookies-table th {
    font-weight: 600;
}

.cookies-table td {
    font-size: 15px;
    color: var(--text-light);
}

.thanks-hero {
    padding: 80px 20px;
    background-color: var(--text-white);
}

.thanks-content {
    text-align: center;
}

.success-icon {
    margin: 0 auto 30px;
    width: 80px;
    height: 80px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--success);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.thanks-details h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.thanks-details p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-dark);
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    max-width: 700px;
    margin: 0 auto;
}

.steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.steps-list li strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.steps-list li p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

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

.thanks-cta p {
    font-size: 17px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #1e4a3b;
    transform: translateY(-2px);
    color: var(--text-white);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.social-proof-small {
    margin-top: 50px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 10px;
}

.proof-text {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
    font-style: italic;
}

.testimonials-thanks {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.testimonials-thanks h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--text-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hamburger {
        display: flex;
    }

    .problem-grid,
    .benefits-split,
    .story-content,
    .service-detail,
    .contact-grid {
        flex-direction: column;
    }

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

    .pillars-cards,
    .testimonials-grid,
    .achievements-grid,
    .process-steps {
        flex-direction: column;
    }

    .service-card {
        flex: 0 0 100%;
    }

    .value-card,
    .team-member {
        flex: 0 0 100%;
    }

    .sticky-cta-content {
        flex-direction: column;
        gap: 15px;
    }

    .hero-overlay-content h1 {
        font-size: 32px;
    }

    .hero-subtext {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .services-grid {
        gap: 20px;
    }

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

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 26px;
    }
}
