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

:root {
    --primary-color: #2563eb;
    --secondary-color: #7c3aed;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

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-light);
    display: flex;
    min-height: 100vh;
}

.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 260px;
    height: 100vh;
    background: var(--bg-white);
    border-right: 1px solid var(--border-color);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.nav-brand h2 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

.nav-links {
    list-style: none;
    flex: 1;
}

.nav-links li {
    margin-bottom: 8px;
}

.nav-links a {
    display: block;
    padding: 12px 16px;
    color: var(--text-light);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--bg-light);
    color: var(--primary-color);
}

.nav-cta {
    margin-top: 20px;
}

.btn-nav-primary {
    display: block;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-nav-primary:hover {
    background: #1d4ed8;
}

.main-content {
    margin-left: 260px;
    flex: 1;
    width: calc(100% - 260px);
}

.hero-card {
    background: var(--bg-white);
    margin: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    padding: 60px;
}

.hero-content-card {
    flex: 1;
    padding-right: 60px;
}

.hero-label {
    display: inline-block;
    padding: 6px 16px;
    background: #dbeafe;
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content-card h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-content-card p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.btn-primary {
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    padding: 14px 32px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.hero-image-card {
    flex: 1;
    max-width: 500px;
}

.hero-image-card img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.stats-cards {
    margin: 40px;
    display: flex;
    gap: 24px;
}

.stat-card {
    flex: 1;
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 800;
}

.stat-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.problem-section {
    margin: 40px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    box-shadow: var(--shadow-sm);
}

.problem-card-left {
    flex: 1.2;
}

.problem-card-left h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.problem-card-left p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.problem-image-right {
    flex: 1;
}

.problem-image-right img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.approach-cards {
    margin: 80px 40px;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.section-header-centered p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.feature-card {
    flex: 1 1 calc(33.333% - 20px);
    background: var(--bg-white);
    padding: 36px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

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

.testimonial-card-section {
    margin: 60px 40px;
    display: flex;
    gap: 32px;
}

.testimonial-card-large {
    flex: 1;
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
}

.testimonial-author span {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

.services-preview-cards {
    margin: 80px 40px;
}

.section-header-left {
    margin-bottom: 40px;
}

.section-header-left h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.section-header-left p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-card-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.service-details {
    padding: 28px;
}

.service-age {
    display: inline-block;
    padding: 4px 12px;
    background: #fef3c7;
    color: #92400e;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-details h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.service-details p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-pricing {
    margin-bottom: 20px;
}

.price {
    display: block;
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 4px;
}

.price-detail {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
}

.btn-select-service {
    width: 100%;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #1d4ed8;
}

.cta-card-split {
    margin: 60px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    box-shadow: var(--shadow-lg);
}

.cta-content-left {
    flex: 1;
}

.cta-content-left h2 {
    font-size: 2.3rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-left p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.btn-cta-large {
    padding: 16px 40px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-visual-right {
    flex: 1;
}

.cta-visual-right img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.form-section-card {
    margin: 80px 40px;
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-card h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    text-align: center;
    font-weight: 700;
}

.form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 36px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background: var(--bg-light);
    cursor: not-allowed;
}

.btn-form-submit {
    width: 100%;
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-form-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.final-trust-cards {
    margin: 80px 40px;
    text-align: center;
}

.final-trust-cards h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 700;
}

.trust-cards-row {
    display: flex;
    gap: 24px;
}

.trust-card {
    flex: 1;
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.trust-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

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

.footer {
    background: var(--text-dark);
    color: white;
    margin-top: 80px;
    padding: 60px 40px 20px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1.5;
}

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

.footer-brand p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-links {
    flex: 1;
}

.footer-links h4 {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    flex: 1;
}

.footer-contact h4 {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-contact p {
    color: #9ca3af;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.btn-sticky {
    padding: 16px 32px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: block;
}

.btn-sticky:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background: #059669;
}

.btn-cookie-reject {
    background: #6b7280;
    color: white;
}

.btn-cookie-reject:hover {
    background: #4b5563;
}

.page-hero-card {
    margin: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 60px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.page-hero-content h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 800;
}

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

.story-card-section {
    margin: 60px 40px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    gap: 60px;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.story-text-card {
    flex: 1.3;
}

.story-text-card h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.story-text-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.story-image-card {
    flex: 1;
}

.story-image-card img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.values-cards {
    margin: 60px 40px;
    text-align: center;
}

.values-cards h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 14px);
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.team-section-cards {
    margin: 60px 40px;
    text-align: center;
}

.team-section-cards h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 700;
}

.team-cards {
    display: flex;
    gap: 32px;
}

.team-member-card {
    flex: 1;
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.team-member-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.team-member-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.impact-card-large {
    margin: 60px 40px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-md);
}

.impact-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 700;
}

.impact-stats {
    display: flex;
    gap: 40px;
}

.impact-stat {
    flex: 1;
    text-align: center;
    padding: 32px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.stat-number {
    display: block;
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 12px;
}

.stat-label {
    display: block;
    color: var(--text-light);
    font-size: 1rem;
}

.approach-detail-cards {
    margin: 60px 40px;
}

.approach-detail-cards h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 700;
}

.approach-cards-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.approach-card-item {
    flex: 1 1 calc(33.333% - 16px);
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.approach-card-item h3 {
    font-size: 1.2rem;
    margin-bottom: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

.approach-card-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-about-card {
    margin: 60px 40px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 60px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-about-card h2 {
    font-size: 2.3rem;
    color: white;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-about-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.services-detailed-cards {
    margin: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
}

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

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

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

.service-detail-content {
    flex: 1.3;
    padding: 50px;
}

.service-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #dbeafe;
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-detail-content > p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-light);
}

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

.service-price-box {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.price-large {
    display: block;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 4px;
}

.price-subtext {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

.comparison-card {
    margin: 60px 40px;
}

.comparison-card h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

.comparison-table-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: var(--bg-light);
}

.comparison-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.comparison-table td {
    padding: 16px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.contact-cards-layout {
    margin: 60px 40px;
}

.contact-info-cards {
    display: flex;
    gap: 28px;
    margin-bottom: 40px;
}

.contact-card {
    flex: 1;
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-map-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-sm);
}

.map-placeholder {
    text-align: center;
}

.map-placeholder h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.map-placeholder p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.faq-cards {
    margin: 60px 40px;
}

.faq-cards h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 700;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.faq-card {
    flex: 1 1 calc(50% - 12px);
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.faq-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

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

.contact-cta-card {
    margin: 60px 40px;
    background: var(--primary-color);
    padding: 60px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.contact-cta-card h2 {
    font-size: 2.3rem;
    color: white;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-cta-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.thanks-hero-card {
    margin: 60px 40px;
    background: var(--bg-white);
    padding: 80px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

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

.thanks-hero-card h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 800;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
}

.thanks-details-card {
    margin: 40px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-sm);
}

.thanks-content h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
    text-align: center;
    font-weight: 700;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

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

.thanks-info-cards {
    margin: 40px;
    display: flex;
    gap: 28px;
}

.info-card {
    flex: 1;
    background: var(--bg-white);
    padding: 36px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

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

.thanks-cta-section {
    margin: 60px 40px;
    background: var(--bg-light);
    padding: 60px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.thanks-cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.thanks-cta-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thanks-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.legal-page-header {
    margin: 60px 40px 40px;
    text-align: center;
}

.legal-page-header h1 {
    font-size: 3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 800;
}

.legal-updated {
    color: var(--text-light);
    font-size: 0.95rem;
}

.legal-content {
    margin: 0 40px 80px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-sm);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    margin-top: 24px;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookies-table th {
    background: var(--bg-light);
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.cookies-table td {
    padding: 12px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

@media (max-width: 1024px) {
    .sidebar-nav {
        width: 200px;
    }

    .main-content {
        margin-left: 200px;
        width: calc(100% - 200px);
    }

    .hero-card {
        flex-direction: column;
        padding: 40px;
    }

    .hero-content-card {
        padding-right: 0;
    }

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

    .cards-grid {
        gap: 20px;
    }

    .feature-card {
        flex: 1 1 calc(50% - 10px);
    }

    .services-card-layout {
        gap: 20px;
    }

    .service-card {
        flex: 1 1 calc(50% - 10px);
    }

    .team-cards {
        flex-direction: column;
    }

    .impact-stats {
        flex-wrap: wrap;
    }

    .impact-stat {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    body {
        flex-direction: column;
    }

    .sidebar-nav {
        position: relative;
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 20px;
    }

    .nav-links {
        display: none;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    .hero-card,
    .problem-section,
    .story-card-section,
    .cta-card-split,
    .service-detail-card {
        flex-direction: column;
        margin: 20px;
        padding: 30px;
    }

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

    .stats-cards {
        flex-wrap: wrap;
        margin: 20px;
    }

    .stat-card {
        flex: 1 1 calc(50% - 12px);
    }

    .feature-card,
    .service-card,
    .value-card,
    .faq-card,
    .approach-card-item {
        flex: 1 1 100%;
    }

    .testimonial-card-section {
        flex-direction: column;
        margin: 30px 20px;
    }

    .trust-cards-row {
        flex-wrap: wrap;
    }

    .trust-card {
        flex: 1 1 calc(50% - 12px);
    }

    .contact-info-cards,
    .thanks-info-cards {
        flex-direction: column;
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        flex: 1 1 100%;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }

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