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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #0ea5e9;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
}

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

.ad-disclosure {
    background: var(--warning-color);
    color: var(--bg-white);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
}

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--bg-white);
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 48px;
}

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

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #cbd5e1;
}

.hero-image {
    width: 100%;
    max-width: 1200px;
    background: var(--bg-light);
}

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

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 16px 40px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

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

.intro-section {
    background: var(--bg-white);
    padding: 100px 24px;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 700;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.intro-visual {
    flex: 1;
    background: var(--bg-light);
}

.intro-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.insight-section {
    background: var(--bg-light);
    padding: 100px 24px;
}

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

.insight-image {
    flex: 1;
    background: var(--bg-white);
}

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

.insight-content {
    flex: 1;
}

.insight-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 700;
}

.insight-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-preview {
    background: var(--bg-white);
    padding: 100px 24px;
}

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header-center p {
    font-size: 19px;
    color: var(--text-light);
}

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

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    width: 360px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--bg-light);
}

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

.service-info {
    padding: 24px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.btn-service-select {
    width: 100%;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-service-select:hover {
    background: var(--secondary-color);
}

.testimonials-section {
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: 100px 24px;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.testimonial-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 12px;
    width: 360px;
}

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

.testimonial-author {
    font-size: 15px;
    color: #94a3b8;
    font-weight: 500;
}

.value-proposition {
    background: var(--bg-light);
    padding: 100px 24px;
}

.value-content {
    max-width: 1200px;
    margin: 0 auto;
}

.value-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.value-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.value-item {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    width: 280px;
    border: 1px solid var(--border-color);
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.value-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.cta-container h2 {
    font-size: 38px;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-container p {
    font-size: 19px;
    margin-bottom: 32px;
    color: #e0e7ff;
}

.main-footer {
    background: var(--bg-dark);
    color: #cbd5e1;
    padding: 60px 24px 24px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--bg-white);
    font-weight: 600;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
}

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

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

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--bg-white);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
}

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

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    overflow: auto;
}

.modal-content {
    background: var(--bg-white);
    margin: 60px auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}

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

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 15px;
}

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

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

.selected-service-display {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 12px;
    background: var(--bg-light);
    border-radius: 6px;
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    padding: 20px;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: var(--text-dark);
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-cookie-accept:hover {
    background: var(--secondary-color);
}

.btn-cookie-reject {
    background: var(--bg-light);
    color: var(--text-dark);
}

.btn-cookie-reject:hover {
    background: var(--border-color);
}

.page-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: var(--bg-white);
    padding: 80px 24px;
    text-align: center;
}

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

.page-hero p {
    font-size: 20px;
    color: #cbd5e1;
}

.about-intro {
    background: var(--bg-white);
    padding: 100px 24px;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background: var(--bg-light);
}

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

.philosophy-section {
    background: var(--bg-light);
    padding: 100px 24px;
}

.philosophy-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.philosophy-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    width: 280px;
}

.philosophy-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.team-approach {
    background: var(--bg-white);
    padding: 100px 24px;
}

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

.team-image {
    flex: 1;
    background: var(--bg-light);
}

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

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

.team-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.impact-section {
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: 100px 24px;
    text-align: center;
}

.impact-section h2 {
    font-size: 40px;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.stat-item {
    width: 240px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.4;
}

.impact-note {
    max-width: 800px;
    margin: 0 auto;
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}

.values-section {
    background: var(--bg-light);
    padding: 100px 24px;
}

.values-content {
    max-width: 1200px;
    margin: 0 auto;
}

.values-content h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    font-weight: 700;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.value-block {
    background: var(--bg-white);
    padding: 36px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.partners-section {
    background: var(--bg-white);
    padding: 100px 24px;
    text-align: center;
}

.partners-section h2 {
    font-size: 38px;
    margin-bottom: 16px;
    font-weight: 700;
}

.partners-section p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px;
}

.partners-note {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 12px;
}

.partners-note p {
    font-size: 17px;
    line-height: 1.7;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
}

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

.service-detail-image {
    flex: 1;
    background: var(--bg-light);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-detail-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
}

.service-detail-price {
    margin: 32px 0 24px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
    margin-right: 12px;
}

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

.program-structure {
    background: var(--bg-light);
    padding: 100px 24px;
}

.program-structure h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.structure-item {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    width: 280px;
}

.structure-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

.structure-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-section {
    background: var(--bg-white);
    padding: 100px 24px;
}

.faq-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    font-weight: 700;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

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

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.contact-map {
    flex: 1;
}

.map-placeholder {
    background: var(--bg-light);
    padding: 60px 32px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-placeholder p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.contact-additional {
    background: var(--bg-light);
    padding: 100px 24px;
}

.contact-additional h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    font-weight: 700;
}

.faq-contact {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-contact-item {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
}

.faq-contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.thanks-section {
    background: var(--bg-white);
    padding: 80px 24px;
    min-height: 70vh;
}

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

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

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-container > p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.thanks-content h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
    text-align: left;
}

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

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

.step-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

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

.thanks-service-info {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
    font-size: 17px;
}

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

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

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

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

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

.thanks-additional {
    margin-top: 60px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 12px;
}

.thanks-additional h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

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

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-date {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-container h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

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

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

.legal-container ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
}

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

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

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

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .intro-wrapper,
    .insight-container,
    .about-container,
    .team-container,
    .contact-container,
    .service-detail {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .cookie-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .section-header-center h2 {
        font-size: 32px;
    }

    .nav-brand {
        font-size: 18px;
    }
}