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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

.container-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

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

.cookie-content a {
    color: #3498db;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.navbar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

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

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

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

.hero-visual {
    min-height: 70vh;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 152, 219, 0.8)),
                url('../images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    width: 100%;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.cta-hero:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

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

.narrative-intro h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.narrative-intro p {
    font-size: 19px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.highlight-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 30px;
}

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

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.split-image {
    flex: 1;
    min-width: 300px;
}

.split-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.split-content {
    flex: 1;
    min-width: 300px;
}

.split-content h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 18px;
}

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

.emphasis {
    font-size: 19px;
    font-style: italic;
    color: var(--text-light);
    margin-top: 20px;
    padding: 20px;
    background-color: #fff9e6;
    border-left: 4px solid #f39c12;
}

.insight-reveal {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.insight-reveal h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 30px;
}

.lead-text {
    font-size: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.stat-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #f1c40f;
}

.stat-card p {
    font-size: 18px;
}

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

.testimonial-inline {
    font-size: 24px;
    font-style: italic;
    line-height: 1.7;
    padding: 40px;
    border-left: 5px solid var(--secondary-color);
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-inline cite {
    display: block;
    margin-top: 25px;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
}

.trust-builder {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.trust-builder h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.process-flow {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    display: inline-block;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    line-height: 70px;
    margin-bottom: 20px;
}

.process-step h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.social-proof {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.social-proof h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--text-light);
    font-size: 15px;
    font-style: normal;
}

.benefits-section {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.benefits-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-item {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 5px solid var(--accent-color);
}

.benefit-item h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
}

.service-reveal {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #f8f9fa 0%, var(--bg-white) 100%);
}

.service-reveal h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 60px;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background-color: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

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

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

.price {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 20px 0;
}

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
}

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

.btn-select {
    width: 100%;
    padding: 15px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-select:hover {
    background-color: #2980b9;
}

.urgency-section {
    padding: 60px 20px;
    background-color: #fff3cd;
}

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

.urgency-box h3 {
    font-size: 32px;
    color: #856404;
    margin-bottom: 20px;
}

.urgency-box p {
    font-size: 19px;
    color: #856404;
}

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

.form-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    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(--accent-color);
}

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

.checkbox-group input[type="checkbox"] {
    width: auto;
}

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

.btn-submit:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    padding: 20px 50px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
}

.cta-button-large:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    padding: 15px 20px;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
}

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

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

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

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

.sticky-btn:hover {
    background-color: #c0392b;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-section a {
    color: white;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header .lead {
    font-size: 22px;
    opacity: 0.95;
}

.services-detail {
    padding: 80px 20px;
}

.service-block {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-content-detail {
    flex: 1;
    min-width: 300px;
}

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

.price-tag {
    display: inline-block;
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.badge-popular {
    display: inline-block;
    background-color: #f39c12;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

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

.service-content-detail li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 17px;
}

.service-content-detail li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

.service-image {
    flex: 1;
    min-width: 300px;
}

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

.btn-service {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--accent-color);
    color: white;
    font-weight: 700;
    border-radius: 8px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.btn-large {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
}

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

.about-story h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-story p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

.philosophy-card {
    flex: 1;
    min-width: 250px;
    max-width: 500px;
    background-color: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.philosophy-card p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.about-team {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.about-team h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

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

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--bg-light);
}

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

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.role {
    display: block;
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.about-process h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}

.process-detail {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.process-item .number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.process-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.about-stats {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.about-stats h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

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

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

.stat-value {
    display: block;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #f1c40f;
}

.stat-item p {
    font-size: 18px;
}

.stats-note {
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
    opacity: 0.8;
}

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

.about-values h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.values-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.values-list li {
    padding: 20px 0;
    font-size: 18px;
    line-height: 1.8;
    border-bottom: 1px solid var(--border-color);
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list strong {
    color: var(--secondary-color);
}

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

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

.contact-info {
    flex: 1;
    min-width: 300px;
}

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

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-block p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

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

.map-placeholder {
    width: 100%;
    height: 350px;
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.directions h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.directions p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

.contact-faq h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 30px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

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

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-cta {
    padding: 80px 20px;
    background-color: var(--bg-white);
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.legal-content {
    padding: 60px 20px 80px;
}

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

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

.legal-content h4 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 25px;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 10px;
    font-size: 16px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.data-table thead tr {
    background-color: var(--primary-color);
    color: white;
    text-align: left;
}

.data-table th,
.data-table td {
    padding: 15px;
    border: 1px solid var(--border-color);
}

.data-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.data-table tbody tr:nth-of-type(even) {
    background-color: var(--bg-light);
}

.warning-box {
    background-color: #fff3cd;
    border-left: 4px solid #f39c12;
    padding: 20px;
    margin: 25px 0;
}

.update-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    padding: 60px 20px;
}

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

.success-icon {
    width: 100px;
    height: 100px;
    background-color: var(--success-color);
    color: white;
    font-size: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

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

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

.order-summary {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.selected-service {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
}

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

.next-steps h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

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

.step-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.thanks-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.btn-primary {
    padding: 15px 35px;
    background-color: var(--secondary-color);
    color: white;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 15px 35px;
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

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

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

    .nav-toggle {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .narrative-intro h2 {
        font-size: 28px;
    }

    .container-split {
        flex-direction: column;
        gap: 30px;
    }

    .service-block {
        flex-direction: column;
    }

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

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

    .process-flow {
        flex-direction: column;
    }

    .sticky-content {
        flex-direction: column;
        text-align: center;
    }

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

    .process-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .page-header h1 {
        font-size: 36px;
    }
}
