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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
}

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

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

.header {
    background-color: var(--bg-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
    gap: 15px;
}

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

.ad-label {
    font-size: 11px;
    color: var(--text-light);
    padding: 4px 8px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.nav {
    display: flex;
    gap: 25px;
}

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

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

.hero-section {
    margin-bottom: 60px;
}

.hero-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85), rgba(30, 64, 175, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    max-width: 700px;
}

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

.btn-primary:hover {
    background-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

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

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

.intro-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

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

.intro-card {
    flex: 1 1 250px;
    max-width: 280px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.intro-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.about-preview {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.about-text {
    flex: 1 1 450px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.3;
}

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

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

.link-arrow:hover {
    text-decoration: underline;
}

.about-image {
    flex: 1 1 400px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

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

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-light);
    font-size: 18px;
}

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

.course-card {
    flex: 1 1 350px;
    max-width: 380px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.course-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-light);
}

.course-content {
    padding: 25px;
}

.course-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.course-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
}

.course-levels {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.level-tag {
    padding: 6px 12px;
    background-color: var(--bg-light);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

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

.btn-select {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-select:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

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

.testimonials-layout {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.testimonial-item {
    flex: 1 1 320px;
    max-width: 380px;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

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

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-content > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 17px;
}

.registration-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--bg-white);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

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

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

.footer-col {
    flex: 1 1 220px;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.8;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(31, 41, 55, 0.98);
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    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: 20px;
    flex-wrap: wrap;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

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

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

.cookie-btn.reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.page-hero {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

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

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

.content-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

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

.story-image {
    flex: 1 1 450px;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.story-content {
    flex: 1 1 450px;
}

.story-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.story-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.value-card {
    flex: 1 1 260px;
    max-width: 300px;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

.team-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.member-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

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

.method-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

.method-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.method-text {
    flex: 1 1 450px;
}

.method-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.method-list {
    list-style-position: inside;
    color: var(--text-light);
}

.method-list li {
    margin-bottom: 10px;
    padding-left: 10px;
}

.method-image {
    flex: 1 1 400px;
}

.method-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

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

.platform-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

.platform-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-item {
    flex: 1 1 300px;
    max-width: 360px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.cta-simple {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-simple h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-simple p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 17px;
}

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

.services-detailed {
    padding: 60px 0;
}

.service-block {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

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

.service-visual {
    flex: 1 1 400px;
}

.service-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.service-details {
    flex: 1 1 450px;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.service-details h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.service-features {
    list-style-position: inside;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-features li {
    margin-bottom: 10px;
    padding-left: 10px;
}

.pricing-box {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.price-item:last-child {
    border-bottom: none;
}

.price-label {
    color: var(--text-dark);
    font-size: 15px;
}

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

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

.btn-select-large:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

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

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

.faq-item {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.cta-register-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta-register-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-register-section p {
    margin-bottom: 40px;
    font-size: 17px;
    opacity: 0.95;
}

.registration-form-compact {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.form-row input,
.form-row select {
    flex: 1 1 250px;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
}

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

.btn-submit-compact:hover {
    background-color: #d97706;
}

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

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

.contact-info {
    flex: 1 1 450px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.info-block {
    margin: 30px 0;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-detail {
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-visual {
    flex: 1 1 400px;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

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

.contact-hours-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

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

.hours-card {
    flex: 1 1 300px;
    max-width: 360px;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hours-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

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

.faq-simple {
    max-width: 800px;
    margin: 40px auto 0;
}

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

.location-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
}

.location-section > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.location-details {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.location-info {
    flex: 1 1 350px;
    max-width: 500px;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 12px;
}

.location-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.location-info p {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 15px;
}

.thanks-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.service-confirm {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    margin-bottom: 40px;
}

.thanks-info {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.step-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step-text p {
    color: var(--text-light);
    font-size: 15px;
}

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

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

.next-steps-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

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

.explore-card {
    flex: 1 1 300px;
    max-width: 360px;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.explore-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.explore-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
}

.explore-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.explore-card a:hover {
    text-decoration: underline;
}

.page-hero-legal {
    padding: 80px 0 40px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero-legal h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-date {
    color: var(--text-light);
    font-size: 16px;
}

.legal-content {
    padding: 60px 0;
    background-color: var(--bg-white);
}

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

.legal-text h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

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

.legal-text ul {
    margin: 15px 0 25px 30px;
    color: var(--text-light);
}

.legal-text ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.legal-text strong {
    color: var(--text-dark);
}

.cookies-table {
    margin: 30px 0;
    overflow-x: auto;
}

.cookies-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.cookies-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.cookies-table td {
    color: var(--text-light);
    font-size: 14px;
}

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

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .nav {
        width: 100%;
        justify-content: center;
    }

    .header-content {
        justify-content: center;
    }

    .about-layout,
    .service-block {
        flex-direction: column;
    }

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

    .form-row input,
    .form-row select,
    .form-row .btn-submit-compact {
        width: 100%;
    }
}