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

:root {
    --primary-color: #1a5f3e;
    --secondary-color: #2ecc71;
    --accent-color: #f39c12;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie,
.btn-cookie-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-cookie:hover {
    background-color: #27ae60;
}

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

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

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 90%;
}

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

.nav-toggle {
    display: none;
    background: none;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li a {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-menu li a:hover {
    color: var(--secondary-color);
}

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

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

.btn-sticky {
    display: block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
    transition: var(--transition);
}

.btn-sticky:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
}

.hero-offset {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    gap: 3rem;
}

.hero-text-block {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 800;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--gray-color);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-visual-block {
    flex: 1;
    position: relative;
    transform: translateY(-3rem);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-overlay-stats {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #144a2f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 95, 62, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
}

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

.intro-asymmetric {
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-left {
    flex: 1;
}

.intro-left h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    color: var(--dark-color);
}

.intro-right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-right p {
    font-size: 1.15rem;
    color: var(--gray-color);
    line-height: 1.7;
}

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

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

.trust-image {
    width: 100%;
    border-radius: 15px;
    flex: 1;
}

.trust-text {
    flex: 1;
}

.trust-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

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

.link-inline {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.link-inline:hover {
    color: var(--secondary-color);
}

.problem-amplification {
    padding: 6rem 2rem;
    background-color: var(--dark-color);
    color: var(--white);
}

.problem-block {
    max-width: 1200px;
    margin: 0 auto;
}

.problem-block h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
    text-align: center;
}

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

.problem-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.problem-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.insight-section {
    padding: 6rem 2rem;
}

.insight-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-visual {
    flex: 1;
    position: relative;
    transform: translateX(-3rem);
}

.insight-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.insight-content {
    flex: 1.2;
}

.insight-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.insight-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.insight-content p {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-inline {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #144a2f);
}

.testimonial-quote {
    max-width: 900px;
    margin: 0 auto;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    line-height: 1.6;
    color: var(--white);
    font-style: italic;
    text-align: center;
}

.testimonial-quote cite {
    display: block;
    margin-top: 2rem;
    font-size: 1rem;
    font-style: normal;
    color: rgba(255, 255, 255, 0.8);
}

.services-preview {
    padding: 6rem 2rem;
    background-color: var(--light-color);
}

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

.services-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

.services-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 300px;
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

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

.service-icon {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.service-card p {
    padding: 0 1.5rem;
    color: var(--gray-color);
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    padding: 1rem 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-service {
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-service:hover {
    background-color: #144a2f;
}

.cta-section-mid {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--accent-color), #e67e22);
    text-align: center;
}

.cta-mid-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}

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

.benefits-reveal {
    padding: 6rem 2rem;
}

.benefits-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.benefit-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 12px;
}

.benefit-item.benefit-large {
    flex: 1 1 100%;
    background-color: var(--primary-color);
    color: var(--white);
}

.benefit-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.benefit-item.benefit-large h3 {
    color: var(--white);
}

.benefit-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-color);
}

.benefit-item.benefit-large p {
    color: rgba(255, 255, 255, 0.9);
}

.form-section {
    padding: 6rem 2rem;
    background-color: var(--dark-color);
}

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

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

.form-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: #144a2f;
}

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

.urgency-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.urgency-content h3 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

.urgency-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

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

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

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

.about-hero {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), #144a2f);
    color: var(--white);
}

.about-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: rgba(255, 255, 255, 0.9);
}

.about-story {
    padding: 6rem 2rem;
}

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

.story-text {
    flex: 1.5;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

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

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

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

.values-section h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--white);
    border-radius: 12px;
}

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

.value-item p {
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.6;
}

.team-section {
    padding: 6rem 2rem;
}

.team-section h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

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

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

.team-member {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 12px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

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

.team-member p:first-of-type {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-bio {
    font-size: 0.95rem;
}

.impact-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #144a2f);
    color: var(--white);
}

.impact-section h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 3rem;
}

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

.impact-stat {
    flex: 1 1 200px;
    text-align: center;
    padding: 2rem;
}

.impact-number {
    display: block;
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.impact-label {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.approach-section h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

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

.approach-content p {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cta-about {
    padding: 5rem 2rem;
    text-align: center;
}

.cta-about h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.cta-about p {
    font-size: 1.3rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.services-hero {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background-color: var(--light-color);
}

.services-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.services-hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--gray-color);
    max-width: 900px;
    margin: 0 auto;
}

.service-detail {
    padding: 4rem 2rem;
}

.service-detail-reverse {
    background-color: var(--light-color);
}

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

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.service-detail-content > p {
    font-size: 1.15rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.service-features li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--gray-color);
}

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

.service-pricing {
    margin-bottom: 2rem;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 0.3rem;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.btn-select-service {
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
}

.btn-select-service:hover {
    background-color: #144a2f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 95, 62, 0.3);
}

.contact-hero {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), #144a2f);
    color: var(--white);
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
}

.contact-info-section {
    padding: 6rem 2rem;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1.2;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.6;
}

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

.contact-response {
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 12px;
}

.contact-response p {
    font-size: 1.05rem;
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.contact-response p:last-child {
    margin-bottom: 0;
}

.contact-image-block {
    flex: 1;
}

.contact-image-block img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.contact-faq {
    padding: 6rem 2rem;
    background-color: var(--light-color);
}

.contact-faq h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.faq-layout {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.6;
}

.contact-map-placeholder {
    padding: 4rem 2rem;
}

.map-notice {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 12px;
    text-align: center;
}

.map-notice p {
    font-size: 1.1rem;
    color: var(--gray-color);
}

.thanks-section {
    padding: 10rem 2rem 4rem;
    min-height: 70vh;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.service-confirmation {
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: 12px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-next {
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    text-align: center;
}

.next-steps {
    list-style: none;
    counter-reset: step-counter;
}

.next-steps li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.6;
}

.next-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 2rem;
    height: 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.thanks-resources h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.resource-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 12px;
}

.resource-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.legal-page {
    padding: 10rem 2rem 4rem;
}

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

.legal-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.last-updated {
    font-size: 0.95rem;
    color: var(--gray-color);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

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

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

.legal-content li {
    font-size: 1.05rem;
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

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

.cookie-table thead {
    background-color: var(--light-color);
}

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

.cookie-table th {
    font-weight: 600;
    color: var(--dark-color);
}

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

@media (max-width: 768px) {
    .nav-floating {
        padding: 1rem 1.5rem;
        gap: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        display: none;
    }

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

    .hero-offset {
        flex-direction: column;
        padding-top: 6rem;
    }

    .hero-visual-block {
        transform: none;
        width: 100%;
    }

    .hero-overlay-stats {
        position: static;
        margin-top: 1rem;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 2rem;
    }

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

    .insight-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .insight-visual {
        transform: none;
    }

    .story-layout {
        flex-direction: column;
    }

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

    .service-detail-layout {
        flex-direction: column;
        gap: 2rem;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .btn-sticky {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .cookie-table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    .nav-floating {
        top: 1rem;
        padding: 0.8rem 1rem;
    }

    .services-cards,
    .benefits-layout,
    .values-grid,
    .resources-grid {
        flex-direction: column;
    }

    .service-card,
    .benefit-item,
    .value-item,
    .resource-item {
        flex: 1 1 100%;
    }

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }
}