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

:root {
    --primary: #3498db;
    --primary-dark: #2980b9;
    --secondary: #2c3e50;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --success: #2ecc71;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--text);
    border: 2px solid var(--light);
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

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

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

.btn-block {
    display: block;
    width: 100%;
}

.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
}

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

.ad-disclosure {
    font-size: 11px;
    color: var(--text-light);
    background-color: var(--light);
    padding: 4px 10px;
    border-radius: 4px;
    order: 3;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

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

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-hero {
    padding: 60px 20px;
    text-align: center;
    color: var(--white);
}

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

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.page-hero-small {
    padding: 40px 20px;
}

.page-hero-small h1 {
    font-size: 32px;
}

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

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 18px;
}

.intro-section {
    padding: 80px 0;
}

.magazine-grid {
    display: flex;
    gap: 40px;
}

.magazine-main {
    flex: 2;
}

.magazine-main h2 {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.magazine-main p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 17px;
}

.magazine-sidebar {
    flex: 1;
}

.info-card {
    padding: 25px;
    border-radius: 10px;
}

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

.info-card ul {
    list-style: disc;
    padding-left: 20px;
}

.info-card li {
    color: var(--text-light);
    margin-bottom: 8px;
}

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

.features-flex {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    flex: 1;
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-item h3 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--text-light);
}

.courses-preview {
    padding: 80px 0;
}

.courses-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.courses-header h2 {
    font-size: 32px;
    color: var(--secondary);
}

.link-arrow {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.link-arrow::after {
    content: '→';
}

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

.course-card {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.course-image {
    height: 200px;
    overflow: hidden;
}

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

.course-content {
    padding: 25px;
}

.course-level {
    display: inline-block;
    font-size: 12px;
    color: var(--primary);
    background-color: rgba(52, 152, 219, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.course-content h3 {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 10px;
}

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

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

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

.testimonials-flex {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial p {
    font-size: 17px;
    color: var(--text);
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial cite {
    color: var(--text-light);
    font-style: normal;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-content {
    text-align: center;
    color: var(--white);
}

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

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.about-intro {
    padding: 80px 0;
}

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

.about-text {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    min-height: 400px;
}

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

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

.methodology-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.method-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.method-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 10px;
}

.method-card h3 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.method-card p {
    color: var(--text-light);
}

.team-section {
    padding: 80px 0;
}

.team-flex {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    flex: 1;
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.team-member p {
    color: var(--text-light);
}

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

.stats-flex {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

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

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

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

.values-content {
    flex: 1;
}

.values-content h2 {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 30px;
}

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

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

.values-list strong {
    display: block;
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 5px;
}

.values-list p {
    color: var(--text-light);
}

.values-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    min-height: 400px;
}

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

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

.intro-box {
    background-color: var(--light);
    padding: 40px;
    border-radius: 10px;
}

.intro-box h2 {
    text-align: center;
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 30px;
}

.steps-flex {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.step {
    flex: 1;
    text-align: center;
}

.step-num {
    display: inline-flex;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step p {
    color: var(--text-light);
}

.languages-section {
    padding: 80px 0;
}

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

.language-card {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.language-header {
    padding: 20px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.language-header h3 {
    font-size: 22px;
}

.language-levels {
    font-size: 14px;
    opacity: 0.9;
}

.language-body {
    padding: 25px;
}

.language-body p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.language-features {
    list-style: disc;
    padding-left: 20px;
}

.language-features li {
    color: var(--text-light);
    margin-bottom: 5px;
}

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

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.pricing-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.pricing-card.featured {
    border: 3px solid var(--primary);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--primary);
    color: var(--white);
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-header {
    padding: 25px;
    border-bottom: 1px solid var(--light);
}

.pricing-header h3 {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 5px;
}

.pricing-header p {
    color: var(--text-light);
    font-size: 14px;
}

.pricing-body {
    padding: 25px;
}

.price-main {
    text-align: center;
    margin-bottom: 20px;
}

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

.price-unit {
    color: var(--text-light);
}

.price-savings {
    text-align: center;
    color: var(--success);
    font-weight: 500;
    margin-bottom: 20px;
}

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

.pricing-features li {
    padding: 8px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    color: var(--success);
    margin-right: 10px;
}

.form-section {
    padding: 80px 0;
}

.form-wrapper {
    display: flex;
    gap: 50px;
    background-color: var(--light);
    padding: 50px;
    border-radius: 10px;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.form-info p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 10px 0;
    color: var(--text);
}

.form-benefits li::before {
    content: '✓';
    color: var(--success);
    margin-right: 10px;
    font-weight: bold;
}

.contact-form {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light);
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
    margin-top: 3px;
}

.form-checkbox label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 14px;
}

.contact-section {
    padding: 80px 0;
}

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

.contact-info,
.contact-details {
    flex: 1;
}

.contact-info h2,
.contact-details h2 {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--text-light);
}

.contact-note {
    background-color: var(--light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note p {
    color: var(--text-light);
    font-size: 14px;
}

.info-box {
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.info-box h3 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.info-box ol {
    padding-left: 20px;
    color: var(--text-light);
}

.info-box ol li {
    margin-bottom: 8px;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-item strong {
    display: block;
    color: var(--text);
    margin-bottom: 5px;
}

.faq-item p {
    color: var(--text-light);
    font-size: 14px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 30px;
    border-radius: 10px;
    color: var(--white);
    text-align: center;
}

.cta-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.cta-box p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.service-selected {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 15px;
}

.thanks-content > p {
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-next-steps {
    background-color: var(--light);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.thanks-next-steps ol {
    padding-left: 20px;
    color: var(--text-light);
}

.thanks-next-steps li {
    margin-bottom: 10px;
}

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

.legal-content {
    padding: 60px 0;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

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

.legal-wrapper h2 {
    font-size: 24px;
    color: var(--secondary);
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-wrapper h3 {
    font-size: 18px;
    color: var(--secondary);
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-wrapper p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.legal-wrapper ul,
.legal-wrapper ol {
    padding-left: 25px;
    margin-bottom: 15px;
}

.legal-wrapper li {
    color: var(--text-light);
    margin-bottom: 8px;
}

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

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

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

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

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

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

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    max-width: 800px;
    margin: 0 auto 15px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 9999;
    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: 30px;
    flex-wrap: wrap;
}

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

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

@media (max-width: 992px) {
    .magazine-grid,
    .about-grid,
    .values-grid,
    .contact-grid {
        flex-direction: column;
    }

    .features-flex,
    .courses-grid,
    .testimonials-flex,
    .team-flex {
        flex-wrap: wrap;
    }

    .feature-item,
    .course-card,
    .testimonial,
    .team-member {
        min-width: 280px;
    }

    .stats-flex {
        flex-wrap: wrap;
    }

    .stat-item {
        width: 50%;
    }

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

    .footer-grid {
        flex-wrap: wrap;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .ad-disclosure {
        order: 0;
        margin-top: 0;
        margin-bottom: 10px;
    }

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

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

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

    .steps-flex {
        flex-direction: column;
    }

    .pricing-grid {
        flex-direction: column;
    }

    .pricing-card {
        min-width: 100%;
    }

    .stat-item {
        width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .thanks-actions {
        flex-direction: column;
    }
}
