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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

.navbar {
    background-color: #1a1a2e;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.ad-label {
    font-size: 0.7rem;
    color: #ffd700;
    padding: 4px 8px;
    border: 1px solid #ffd700;
    border-radius: 4px;
    margin: 0 15px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: #4a90e2;
}

.hero-section {
    background-image: url('https://images.unsplash.com/photo-1427504494785-3a9ca7044f45?w=1400&q=80');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #2c3e50;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: #4a90e2;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #357abd;
}

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

.card-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

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

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

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

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

.courses-section {
    padding: 80px 0;
    background-color: #fff;
}

.courses-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.course-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.course-card {
    flex-basis: calc(33.333% - 20px);
    min-width: 300px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.course-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.course-info {
    padding: 25px;
}

.course-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.course-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.course-details {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.course-details span {
    background-color: #e8f4f8;
    color: #4a90e2;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 15px;
}

.btn-course {
    width: 100%;
    background-color: #4a90e2;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-course:hover {
    background-color: #357abd;
}

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

.method-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.method-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

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

.method-content {
    flex: 1;
    min-width: 300px;
}

.method-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.method-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.method-list {
    list-style: none;
    margin-bottom: 25px;
}

.method-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.method-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
}

.btn-secondary {
    background-color: #27ae60;
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    transition: background-color 0.3s;
}

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

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

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a2e;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid #4a90e2;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #fff;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-large {
    background-color: #fff;
    color: #4a90e2;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    display: inline-block;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-large:hover {
    transform: scale(1.05);
}

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

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-card h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.form-card > p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

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

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

.form-group label {
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

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

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

.btn-submit {
    background-color: #4a90e2;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #357abd;
}

.disclaimer-section {
    padding: 40px 0;
    background-color: #fff3cd;
}

.disclaimer-text {
    text-align: center;
    font-size: 0.9rem;
    color: #856404;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.footer {
    background-color: #1a1a2e;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    color: #ccc;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: opacity 0.3s;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background-color: #e74c3c;
    color: #fff;
}

.btn-reject:hover {
    opacity: 0.9;
}

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

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
}

.story-section {
    padding: 80px 0;
    background-color: #fff;
}

.story-grid {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.story-content {
    flex: 1;
    min-width: 300px;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.story-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.story-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.mission-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.mission-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.mission-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #4a90e2;
}

.mission-card p {
    color: #666;
    line-height: 1.7;
}

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

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.team-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-card {
    flex-basis: calc(33.333% - 20px);
    min-width: 280px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    padding-bottom: 25px;
}

.team-image {
    height: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.team-card h3 {
    font-size: 1.4rem;
    margin-top: 20px;
    margin-bottom: 5px;
    color: #1a1a2e;
}

.team-role {
    color: #4a90e2;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.team-card p {
    color: #666;
    padding: 0 20px;
    line-height: 1.6;
}

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

.values-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.values-content {
    flex: 1;
    min-width: 300px;
}

.values-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 25px;
}

.values-list li strong {
    display: block;
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.values-list li p {
    color: #666;
    line-height: 1.7;
}

.values-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.approach-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
    line-height: 1.7;
}

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

.approach-card {
    flex: 1;
    min-width: 250px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-top: 4px solid #4a90e2;
}

.approach-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.approach-card p {
    color: #666;
    line-height: 1.7;
}

.services-intro {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.intro-box {
    max-width: 900px;
    margin: 0 auto;
}

.intro-box h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #1a1a2e;
}

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

.benefit-item {
    flex-basis: calc(50% - 10px);
    min-width: 250px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-icon {
    color: #27ae60;
    font-size: 1.5rem;
    font-weight: bold;
}

.benefit-item p {
    color: #555;
    line-height: 1.6;
}

.courses-detailed {
    padding: 60px 0;
    background-color: #fff;
}

.course-detailed-card {
    max-width: 900px;
    margin: 0 auto 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.course-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.course-header h2 {
    font-size: 2rem;
    margin: 0;
}

.price-highlight {
    font-size: 1.8rem;
    font-weight: bold;
    background-color: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 8px;
}

.course-body {
    padding: 40px;
}

.course-description h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.course-description ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.course-description li {
    color: #666;
    line-height: 1.7;
    margin-bottom: 8px;
}

.course-description p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.course-cta {
    margin-top: 30px;
}

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

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

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

.faq-item {
    flex-basis: calc(50% - 15px);
    min-width: 280px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1a1a2e;
}

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

.contact-main {
    padding: 80px 0;
    background-color: #fff;
}

.contact-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info-section {
    flex: 1;
    min-width: 300px;
}

.contact-info-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.contact-info-section > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #4a90e2;
}

.contact-item p {
    color: #666;
    line-height: 1.7;
}

.no-link-email {
    color: #333;
    font-weight: 500;
}

.contact-map-section {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

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

.map-note {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.faq-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.visit-section {
    padding: 60px 0;
    background-color: #fff;
}

.visit-card {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #4a90e2;
}

.visit-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.visit-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
    color: #fff;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.3rem;
    line-height: 1.7;
}

.thanks-details {
    padding: 80px 0;
    background-color: #fff;
}

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

.details-card h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a2e;
}

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

.step-item {
    flex-basis: calc(50% - 15px);
    min-width: 250px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.step-item p {
    color: #666;
    line-height: 1.7;
}

.thanks-info {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.info-boxes {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-box {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #4a90e2;
}

.info-box p {
    color: #666;
    line-height: 1.7;
}

.thanks-resources {
    padding: 80px 0;
    background-color: #fff;
}

.thanks-resources h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

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

.resource-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.resource-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.resource-link {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.resource-link:hover {
    color: #357abd;
}

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

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.cta-box p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.legal-content {
    padding: 60px 0;
    background-color: #fff;
}

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

.legal-container h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #4a90e2;
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #555;
}

.legal-container p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-container ul,
.legal-container ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-container li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-container a {
    color: #4a90e2;
    text-decoration: none;
}

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

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

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

.cookie-table th {
    background-color: #4a90e2;
    color: #fff;
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

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

    .team-card {
        flex-basis: 100%;
    }

    .benefit-item {
        flex-basis: 100%;
    }

    .faq-item {
        flex-basis: 100%;
    }

    .step-item {
        flex-basis: 100%;
    }

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