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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

.site-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

.main-nav a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #2c3e50;
}

.ad-disclosure {
    background-color: #fff3cd;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 12px;
    color: #856404;
}

.hero-section {
    position: relative;
    margin-bottom: 80px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(52, 73, 94, 0.75));
    display: flex;
    align-items: center;
}

.hero-text {
    color: #fff;
    max-width: 700px;
}

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

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

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498db;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #3498db;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #fff;
}

.intro-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.intro-stats {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #777;
    text-align: center;
}

.courses-preview {
    padding: 80px 0;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-centered h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header-centered p {
    font-size: 18px;
    color: #666;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.course-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-5px);
}

.card-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.course-age {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}

.card-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

.course-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.course-duration {
    font-size: 14px;
    color: #888;
}

.course-price {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.btn-card-action {
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 15px;
}

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

.cta-centered {
    text-align: center;
    margin-top: 40px;
}

.approach-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.approach-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.approach-content > p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.approach-point h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.approach-point p {
    font-size: 16px;
    color: #666;
}

.approach-image {
    flex: 0 0 450px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

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

.enrollment-section {
    padding: 80px 0;
}

.enrollment-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
}

.enrollment-card h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.enrollment-card > p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.enrollment-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.enrollment-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: left;
}

.enrollment-form.hidden {
    display: none;
}

.enrollment-form h3 {
    color: #2c3e50;
    font-size: 26px;
    margin-bottom: 10px;
}

.selected-course-display {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.selected-course-display strong {
    color: #3498db;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
}

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

.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.testimonial-card {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: #2c3e50;
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 14px;
    color: #888;
}

.disclaimer-section {
    padding: 60px 0;
}

.disclaimer-box {
    background-color: #fff3cd;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
}

.disclaimer-box h3 {
    color: #856404;
    font-size: 22px;
    margin-bottom: 15px;
}

.disclaimer-box p {
    color: #856404;
    font-size: 15px;
    line-height: 1.7;
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 14px;
}

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

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

.btn-cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

.services-detail-section {
    padding: 80px 0;
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.service-meta {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
}

.service-detail-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-list {
    margin-left: 20px;
    margin-bottom: 25px;
}

.service-list li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-detail-image {
    flex: 0 0 400px;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

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

.enrollment-cta-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.enrollment-cta-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.enrollment-cta-card h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.enrollment-cta-card p {
    font-size: 18px;
    color: #666;
}

.about-story-section {
    padding: 80px 0;
}

.about-content-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text-primary {
    flex: 1;
}

.about-text-primary h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.about-text-primary p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image-primary {
    flex: 0 0 450px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.about-image-primary img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.value-card {
    flex: 0 0 calc(50% - 15px);
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.methodology-section {
    padding: 80px 0;
}

.methodology-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.methodology-image {
    flex: 0 0 400px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

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

.methodology-content {
    flex: 1;
}

.methodology-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.methodology-content > p {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.methodology-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.methodology-point h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.methodology-point p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 17px;
    color: #555;
}

.team-approach {
    display: flex;
    gap: 30px;
}

.team-approach-card {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.team-approach-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.team-approach-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.location-section {
    padding: 80px 0;
}

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

.location-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.location-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.impact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.impact-section h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
}

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

.impact-stat {
    text-align: center;
    flex: 0 0 250px;
}

.impact-number {
    display: block;
    font-size: 52px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
}

.impact-stat p {
    font-size: 16px;
    color: #666;
}

.cta-about-section {
    padding: 80px 0;
}

.cta-about-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
}

.cta-about-card h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-about-card p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

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

.contact-info-section {
    padding: 80px 0;
}

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

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

.contact-details-card h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-details-card > p {
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.contact-info-item h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.contact-info-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.contact-note p {
    font-size: 15px;
    color: #555;
}

.contact-map-placeholder {
    flex: 0 0 450px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 400px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.9), transparent);
    padding: 20px;
}

.map-overlay p {
    color: #fff;
    font-size: 16px;
    text-align: center;
}

.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
}

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

.faq-item {
    flex: 0 0 calc(50% - 15px);
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.directions-section {
    padding: 80px 0;
}

.directions-section h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
}

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

.direction-item {
    flex: 0 0 calc(50% - 15px);
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.direction-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.direction-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.thanks-section {
    padding: 100px 0;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-card h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.thanks-details p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.thanks-next-steps h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.steps-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

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

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    line-height: 50px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

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

.legal-page {
    padding: 80px 0;
}

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

.legal-content h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.legal-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

    .hero-text p {
        font-size: 16px;
    }

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

    .intro-stats {
        flex: 1;
        width: 100%;
    }

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

    .course-card {
        flex: 1 1 100%;
    }

    .approach-layout,
    .service-detail-layout,
    .about-content-layout,
    .methodology-layout,
    .contact-grid {
        flex-direction: column;
    }

    .approach-image,
    .service-detail-image,
    .about-image-primary,
    .methodology-image,
    .contact-map-placeholder {
        flex: 1;
        width: 100%;
    }

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

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

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

    .values-grid,
    .faq-grid,
    .directions-content,
    .steps-grid {
        flex-direction: column;
    }

    .value-card,
    .faq-item,
    .direction-item {
        flex: 1 1 100%;
    }

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

    .impact-stats {
        flex-direction: column;
    }

    .cta-buttons,
    .thanks-actions {
        flex-direction: column;
    }
}