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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

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

.header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.ad-notice {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    padding: 0.3rem 0.8rem;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
}

.nav {
    display: flex;
    gap: 2rem;
}

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

.nav a:hover {
    opacity: 0.8;
}

.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: relative;
    height: 100%;
    background: linear-gradient(135deg, rgba(30,60,114,0.85) 0%, rgba(42,82,152,0.75) 100%);
    display: flex;
    align-items: center;
}

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

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.intro-cards {
    padding: 5rem 0;
    background: #fff;
}

.card-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem 2rem;
    background: #f8f9fa;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1e3c72;
}

.info-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.value-proposition {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.content-left,
.content-right {
    flex: 1;
    min-width: 300px;
}

.content-left img,
.content-right img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    object-fit: cover;
}

.content-right h2,
.content-left h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1e3c72;
    line-height: 1.3;
}

.content-right p,
.content-left p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #4a5568;
}

.stats-inline {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3c72;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.services-preview {
    padding: 6rem 0;
    background: #fff;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #6b7280;
}

.service-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 45px rgba(0,0,0,0.15);
}

.service-card.featured {
    border: 3px solid #1e3c72;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #1e3c72;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e3c72;
}

.service-content p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1e3c72;
    font-weight: 700;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1.5rem;
}

.btn-select {
    width: 100%;
    padding: 1rem;
    background: #1e3c72;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #2a5298;
}

.education-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.split-content-reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.education-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.education-section p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    opacity: 0.95;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.form-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 0.8rem;
}

.form-header p {
    color: #6b7280;
}

.membership-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 250px;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3c72;
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.form-group-checkbox input {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-group-checkbox label {
    color: #4a5568;
    font-size: 0.95rem;
}

.form-group-checkbox a {
    color: #1e3c72;
    text-decoration: underline;
}

.btn-submit {
    padding: 1.1rem;
    background: #1e3c72;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

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

.trust-section {
    padding: 6rem 0;
    background: #fff;
}

.trust-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 3rem;
}

.testimonial-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border-left: 4px solid #1e3c72;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #1e3c72;
    font-size: 0.95rem;
}

.footer {
    background: #1a202c;
    color: #cbd5e0;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

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

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

.footer-disclaimer {
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1.5rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #a0aec0;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #718096;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e3c72;
    color: #fff;
    padding: 1.5rem;
    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;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background: #fff;
    color: #1e3c72;
}

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.page-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 4rem 0;
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story {
    padding: 6rem 0;
    background: #fff;
}

.story-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.story-text,
.story-image {
    flex: 1;
    min-width: 300px;
}

.story-text h2 {
    font-size: 2.3rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
}

.story-text p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.story-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.values-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 260px;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.value-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.team-approach {
    padding: 6rem 0;
    background: #fff;
}

.approach-split {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.approach-image,
.approach-content {
    flex: 1;
    min-width: 300px;
}

.approach-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.approach-content h2 {
    font-size: 2.3rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
}

.approach-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.mission-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

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

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    opacity: 0.95;
}

.mission-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.cta-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.cta-box {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    color: #fff;
}

.cta-box h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #1e3c72;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.services-detailed {
    padding: 4rem 0;
    background: #fff;
}

.service-detail-card {
    margin-bottom: 3rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
}

.featured-service {
    border: 3px solid #1e3c72;
}

.featured-badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #1e3c72;
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    z-index: 2;
}

.service-detail-header {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-overlay {
    height: 100%;
    background: linear-gradient(135deg, rgba(30,60,114,0.85) 0%, rgba(42,82,152,0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 2rem;
}

.service-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
}

.service-detail-content {
    padding: 3rem;
}

.service-detail-content h3 {
    font-size: 1.6rem;
    color: #1e3c72;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-detail-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #2c3e50;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1e3c72;
    font-weight: 700;
    font-size: 1.2rem;
}

.additional-services {
    padding: 6rem 0;
    background: #f8f9fa;
}

.additional-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.addon-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.addon-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
}

.addon-card h3 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.addon-card p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.addon-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.addon-note {
    font-size: 0.9rem;
    color: #6b7280;
}

.comparison-section {
    padding: 6rem 0;
    background: #fff;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 3rem;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem;
    text-align: center;
}

.comparison-table thead {
    background: #1e3c72;
    color: #fff;
}

.comparison-table th {
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #2c3e50;
}

.contact-info {
    padding: 5rem 0;
    background: #fff;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-details,
.contact-image {
    flex: 1;
    min-width: 300px;
}

.contact-details h2 {
    font-size: 2.3rem;
    color: #1e3c72;
    margin-bottom: 2rem;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 0.8rem;
}

.contact-block p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.faq-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
}

.faq-item a {
    color: #1e3c72;
    text-decoration: underline;
}

.thanks-section {
    padding: 6rem 0;
    background: #fff;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: #1e3c72;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #fff;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.thanks-details {
    margin-bottom: 3rem;
}

.selected-service {
    font-size: 1.1rem;
    color: #2c3e50;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 2rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 220px;
    max-width: 250px;
    padding: 2rem 1.5rem;
    background: #f8f9fa;
    border-radius: 16px;
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: #1e3c72;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step h3 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 0.8rem;
}

.step p {
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 0.95rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 4rem 0;
    background: #fff;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.legal-updated {
    color: #6b7280;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #4a5568;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #4a5568;
}

.legal-content a {
    color: #1e3c72;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table thead {
    background: #f8f9fa;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table th {
    font-weight: 600;
    color: #1e3c72;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .nav {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .service-cards,
    .card-grid,
    .values-grid,
    .testimonial-cards {
        flex-direction: column;
    }

    .split-content,
    .split-content-reverse {
        flex-direction: column;
    }

    .stats-inline {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .mission-stats {
        gap: 2rem;
    }
}