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

:root {
    --primary-color: #2563eb;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --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.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.header {
    background: var(--bg-white);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav {
    display: none;
}

.nav-link {
    margin-left: 2rem;
    color: var(--text-dark);
    font-weight: 500;
}

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

.hamburger {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.hero {
    padding: 2rem 0;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-card {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.hero-main h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.hero-main p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-image {
    padding: 0;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 1rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

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

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

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

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.btn-text:hover {
    text-decoration: underline;
}

.intro-cards {
    padding: 2rem 0;
}

.cards-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.card p {
    color: var(--text-light);
}

.story-section {
    padding: 3rem 0;
    background: var(--bg-white);
}

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

.story-text-card,
.story-image-card {
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.story-text-card {
    background: var(--bg-light);
    padding: 2rem;
}

.story-text-card h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.story-text-card p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.story-image-card {
    overflow: hidden;
}

.story-image-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 1rem;
}

.services-section {
    padding: 3rem 0;
}

.section-header-card {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.section-header-card h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

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

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
}

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

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.service-age {
    display: inline-block;
    background: var(--bg-light);
    padding: 0.375rem 0.875rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 600;
}

.service-body {
    flex: 1;
    margin-bottom: 1.5rem;
}

.service-body p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

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

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1rem;
}

.service-price {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-select {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonial-section {
    padding: 3rem 0;
    background: var(--bg-white);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9375rem;
}

.approach-section {
    padding: 3rem 0;
}

.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.approach-card-large,
.approach-card-small {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.approach-card-large h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.approach-card-large p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.approach-card-small h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

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

.cta-section {
    padding: 3rem 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-card h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.cta-card .btn-primary,
.cta-card .btn-secondary {
    background: white;
    color: var(--primary-color);
}

.cta-card .btn-primary:hover,
.cta-card .btn-secondary:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
}

.final-cards {
    padding: 3rem 0;
    background: var(--bg-white);
}

.final-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.final-card {
    background: var(--bg-light);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.final-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

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

.footer {
    background: var(--secondary-color);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.page-hero {
    padding: 3rem 0;
    background: var(--bg-white);
}

.page-hero-card {
    background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.page-hero-card h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

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

.about-story {
    padding: 3rem 0;
}

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

.story-card-main,
.story-card-image {
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.story-card-main {
    background: var(--bg-white);
    padding: 2rem;
}

.story-card-main h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.story-card-main p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.story-card-image {
    overflow: hidden;
}

.story-card-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
}

.mission-section {
    padding: 3rem 0;
    background: var(--bg-white);
}

.mission-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-card {
    background: var(--bg-light);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.mission-card ul {
    list-style: none;
}

.mission-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.mission-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.team-section {
    padding: 3rem 0;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--secondary-color);
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.team-card {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.team-role {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

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

.philosophy-section {
    padding: 3rem 0;
    background: var(--bg-white);
}

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

.philosophy-text,
.philosophy-image {
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.philosophy-text {
    background: var(--bg-light);
    padding: 2rem;
}

.philosophy-text h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.philosophy-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.principle-card {
    background: var(--bg-white);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.principle-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.principle-card p {
    color: var(--text-light);
}

.philosophy-image {
    overflow: hidden;
}

.philosophy-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 1rem;
}

.impact-section {
    padding: 3rem 0;
}

.impact-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--secondary-color);
}

.impact-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.impact-card {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.impact-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.impact-label {
    color: var(--text-light);
    font-size: 1.125rem;
}

.services-detail-section {
    padding: 3rem 0;
}

.services-intro-card {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.services-intro-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.125rem;
}

.service-detail-card {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.service-detail-card.featured-service {
    border: 2px solid var(--primary-color);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.service-detail-title h2 {
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.service-tag {
    display: inline-block;
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-light);
    font-weight: 600;
}

.service-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.service-detail-description h4 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.service-detail-description p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-detail-description ul {
    list-style: none;
}

.service-detail-description li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

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

.service-detail-info {
    background: var(--bg-light);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.info-block {
    margin-bottom: 1.5rem;
}

.info-block h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.info-block p {
    color: var(--text-light);
}

.faq-section {
    padding: 3rem 0;
    background: var(--bg-white);
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--secondary-color);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-card {
    background: var(--bg-light);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.faq-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

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

.contact-section {
    padding: 3rem 0;
}

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

.contact-info-card,
.contact-image-card {
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.contact-info-card {
    background: var(--bg-white);
    padding: 2rem;
}

.contact-info-card h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.contact-detail a {
    color: var(--primary-color);
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-note {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-top: 1.5rem;
}

.contact-note p {
    color: var(--text-light);
    font-style: italic;
}

.contact-image-card {
    overflow: hidden;
}

.contact-image-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 1rem;
}

.location-section {
    padding: 3rem 0;
    background: var(--bg-white);
}

.location-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--secondary-color);
}

.location-card {
    background: var(--bg-light);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.location-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.thanks-section {
    padding: 4rem 0;
    text-align: center;
}

.thanks-card {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: 0 auto;
}

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

.thanks-card h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.thanks-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.next-steps-section {
    padding: 3rem 0;
    background: var(--bg-white);
}

.next-steps-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--secondary-color);
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-card {
    background: var(--bg-light);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.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: 700;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

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

.additional-info-section {
    padding: 3rem 0;
}

.info-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

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

.return-section {
    padding: 3rem 0;
    background: var(--bg-white);
}

.return-card {
    background: var(--bg-light);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.return-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.legal-section {
    padding: 3rem 0;
}

.legal-content {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.legal-content h1 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.legal-updated {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-content h3 {
    font-size: 1.375rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.legal-content h4 {
    font-size: 1.125rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-content li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

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

.legal-content strong {
    color: var(--text-dark);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookies-table th {
    background: var(--bg-light);
    color: var(--secondary-color);
    font-weight: 600;
}

.cookies-table td {
    color: var(--text-light);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
    padding: 0.5rem;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

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

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

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

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

.form-group textarea {
    resize: vertical;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1500;
    display: none;
}

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

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

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

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

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

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

@media (min-width: 640px) {
    .cards-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .card {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .final-grid {
        flex-direction: row;
    }

    .final-card {
        flex: 1;
    }
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .hero-grid {
        flex-direction: row;
    }

    .hero-card {
        flex: 1;
    }

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

    .hero-image img {
        height: 100%;
    }

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

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

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

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .approach-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .approach-card-large {
        flex: 1 1 100%;
    }

    .approach-card-small {
        flex: 1 1 calc(33.333% - 1rem);
    }

    .footer-grid {
        flex-direction: row;
    }

    .footer-col {
        flex: 1;
    }

    .story-grid {
        flex-direction: row;
    }

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

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

    .mission-cards {
        flex-direction: row;
    }

    .mission-card {
        flex: 1;
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .philosophy-layout {
        flex-direction: row;
    }

    .philosophy-text {
        flex: 2;
    }

    .philosophy-image {
        flex: 1;
    }

    .philosophy-image img {
        height: 100%;
    }

    .impact-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .impact-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

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

    .service-detail-description {
        flex: 2;
    }

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

    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .contact-layout {
        flex-direction: row;
    }

    .contact-info-card {
        flex: 1;
    }

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

    .contact-image-card img {
        height: 100%;
    }

    .steps-grid {
        flex-direction: row;
    }

    .step-card {
        flex: 1;
    }

    .info-cards-grid {
        flex-direction: row;
    }

    .info-card {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .cards-grid {
        flex-wrap: nowrap;
    }

    .card {
        flex: 1;
    }

    .testimonials-grid {
        flex-wrap: nowrap;
    }

    .testimonial-card {
        flex: 1;
    }

    .impact-grid {
        flex-wrap: nowrap;
    }

    .impact-card {
        flex: 1;
    }
}