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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --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: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

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

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

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

a:hover {
    color: var(--primary-dark);
}

.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.ad-disclosure {
    font-size: 11px;
    color: var(--text-secondary);
    padding: 4px 12px;
    background: #fef3c7;
    border-radius: var(--radius-sm);
    border: 1px solid #fbbf24;
    width: fit-content;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

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

.nav a.active {
    color: var(--primary-color);
}

.nav a:hover {
    color: var(--primary-color);
}

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

.hero-card .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-content-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-content-card h1 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.5;
    opacity: 0.95;
}

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

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: fit-content;
}

.cta-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
    width: fit-content;
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.intro-cards {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.section-header-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.section-header-card p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

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

.benefit-card {
    flex: 1 1 100%;
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.card-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

.services-showcase {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title-center {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

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

.services-card-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

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

.service-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
}

.service-content p {
    color: var(--text-secondary);
    font-size: 15px;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
    border-top: 1px solid var(--border-color);
}

.duration {
    font-size: 14px;
    color: var(--text-secondary);
}

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

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

.btn-select-service:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.expertise-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.expertise-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.expertise-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.expertise-text p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.link-arrow {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 12px;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(4px);
}

.expertise-stats-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: var(--radius-lg);
    color: white;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    opacity: 0.9;
}

.enrollment-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

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

.enrollment-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.enrollment-card > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 15px;
    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(--primary-color);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkbox-group label {
    display: flex;
    gap: 8px;
    font-weight: 400;
    font-size: 14px;
    align-items: flex-start;
}

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

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonials-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.testimonial-author strong {
    font-size: 15px;
    color: var(--secondary-color);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-secondary);
}

.cta-footer-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.cta-footer-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: white;
}

.cta-footer-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-footer-card p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.email-display {
    font-style: normal;
    cursor: default;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 12px !important;
    line-height: 1.6;
    opacity: 0.6 !important;
    margin-bottom: 20px !important;
}

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

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

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent-color);
}

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

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

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

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

.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);
}

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

.page-hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.content-card-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-card-main h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.content-card-main p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.content-card-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.values-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.values-list li {
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    color: var(--text-secondary);
}

.values-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.approach-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.approach-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 50px;
}

.approach-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.approach-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
}

.approach-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
}

.approach-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.team-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 50px;
}

.team-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.team-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.team-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 20px 24px 8px;
}

.team-role {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0 24px;
}

.team-card > p {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 12px 24px 24px;
    line-height: 1.6;
}

.impact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.impact-card-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

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

.impact-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--secondary-color);
    text-align: center;
}

.impact-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.impact-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.impact-stat p {
    font-size: 15px;
    color: var(--text-secondary);
}

.cta-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.cta-card-centered h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.cta-card-centered p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.services-detail-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.service-detail-card.reverse {
    background: var(--bg-white);
}

.service-detail-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.meta-item {
    font-size: 13px;
    color: var(--text-secondary);
    background: var(--bg-white);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.service-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-detail-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 16px;
    color: var(--secondary-color);
}

.content-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.content-list li {
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.content-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-price-display {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 24px 0;
}

.price-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-detail-image {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.faq-card {
    background: var(--bg-white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.faq-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.faq-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.enrollment-cta-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.cta-card-large h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.contact-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.contact-info-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--secondary-color);
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.contact-detail p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-note {
    font-size: 13px !important;
    color: var(--text-secondary) !important;
    font-style: italic;
    margin-top: 8px !important;
}

.contact-map-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.contact-map-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 16px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 16px;
    font-size: 14px;
}

.location-note {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-reasons-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.reasons-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 50px;
}

.reason-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
}

.reason-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.reason-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.reason-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.quick-links-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.quick-links-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.quick-links-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.quick-links-card p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.visit-info-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.visit-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    max-width: 800px;
    margin: 0 auto;
}

.visit-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.visit-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 24px;
}

.thanks-content-card h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.thanks-subtitle {
    font-size: 18px;
    opacity: 0.95;
}

.thanks-details {
    padding: 80px 0;
    background: var(--bg-white);
}

.thanks-info-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

.thanks-info-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--secondary-color);
}

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

.step-item {
    display: flex;
    gap: 20px;
    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: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.step-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.selected-service-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-color);
    text-align: center;
}

.selected-service-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

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

.thanks-resources {
    padding: 80px 0;
    background: var(--bg-light);
}

.resources-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 50px;
}

.resource-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.resource-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.resource-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.thanks-note {
    padding: 80px 0;
    background: var(--bg-white);
}

.note-card {
    background: #fef3c7;
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid #fbbf24;
    max-width: 800px;
    margin: 0 auto;
}

.note-card p {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.7;
}

.legal-page {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.legal-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--secondary-color);
}

.legal-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 28px 0 16px;
    color: var(--secondary-color);
}

.legal-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
}

.legal-content li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}

.last-updated {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 32px;
}

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
    font-size: 14px;
}

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

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

@media (min-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hero-card .container {
        flex-direction: row;
        align-items: center;
    }

    .hero-content-card {
        flex: 1;
    }

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

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

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

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

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

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

    .expertise-layout {
        flex-direction: row;
        gap: 60px;
    }

    .expertise-text {
        flex: 2;
    }

    .expertise-stats-card {
        flex: 1;
    }

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

    .testimonial-card {
        flex: 1;
    }

    .form-row {
        flex-direction: row;
    }

    .form-row .form-group {
        flex: 1;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

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

    .cookie-content p {
        margin-bottom: 0;
    }

    .content-card-layout {
        flex-direction: row;
    }

    .content-card-main {
        flex: 2;
    }

    .content-card-sidebar {
        flex: 1;
    }

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

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

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

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

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

    .impact-stat {
        flex: 1;
    }

    .service-detail-card {
        flex-direction: row;
        align-items: center;
    }

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

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

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

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

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

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

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

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

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

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

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

    .resource-card {
        flex: 1;
    }
}