* {
    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: #333;
    background-color: #ffffff;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1abc9c;
}

.ad-notice {
    font-size: 0.75rem;
    color: #999;
    padding: 5px 12px;
    background: #f8f9fa;
    border-radius: 15px;
}

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    position: relative;
    margin-top: 80px;
    padding: 40px 5%;
    overflow: hidden;
}

.hero-content-offset {
    width: 45%;
    display: flex;
    align-items: center;
    padding-right: 60px;
    z-index: 2;
}

.hero-text-block {
    transform: translateY(-40px);
}

.hero-text-block h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background: #1abc9c;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #16a085;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 188, 156, 0.3);
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 60%;
    height: 75%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: rotate(-3deg);
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
}

.intro-offset {
    display: flex;
    padding: 120px 5% 80px;
    gap: 60px;
    align-items: flex-start;
}

.intro-narrow {
    width: 40%;
    padding-top: 60px;
}

.intro-narrow h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.3;
}

.intro-narrow p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.intro-wide-image {
    width: 55%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(40px);
}

.intro-wide-image img {
    width: 100%;
    height: 100%;
}

.insight-diagonal {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: skewY(-2deg);
    margin: 80px 0;
}

.insight-container {
    display: flex;
    gap: 80px;
    align-items: center;
    transform: skewY(2deg);
    max-width: 1200px;
    margin: 0 auto;
}

.insight-text {
    width: 55%;
}

.insight-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.insight-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.insight-image-block {
    width: 40%;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: rotate(3deg);
}

.insight-image-block img {
    width: 100%;
    height: 100%;
}

.products-staggered {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-offset {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 80px;
    margin-left: 10%;
}

.product-card-offset-left,
.product-card-offset-right {
    display: flex;
    gap: 60px;
    margin-bottom: 120px;
    align-items: center;
}

.product-card-offset-left {
    padding-left: 5%;
}

.product-card-offset-right {
    padding-right: 5%;
    flex-direction: row-reverse;
}

.product-image {
    width: 45%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image img {
    width: 100%;
    height: 100%;
}

.product-info {
    width: 50%;
}

.product-info h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.product-info p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.product-specs span {
    font-size: 0.95rem;
    color: #666;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1abc9c;
    margin: 25px 0;
}

.btn-select {
    padding: 14px 32px;
    background: #34495e;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 73, 94, 0.3);
}

.testimonials-irregular {
    padding: 100px 5%;
    background: #2c3e50;
    color: white;
}

.testimonials-irregular h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.testimonial-large {
    width: 55%;
    transform: translateY(-20px);
}

.testimonial-small {
    width: 40%;
    transform: translateY(40px);
}

.testimonial-medium {
    width: 48%;
    margin: 0 auto;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-card cite {
    font-style: normal;
    color: #1abc9c;
    font-weight: 600;
}

.form-section-diagonal {
    padding: 120px 5%;
    background: linear-gradient(120deg, #ecf0f1 0%, #bdc3c7 100%);
    transform: skewY(2deg);
    margin: 100px 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    transform: skewY(-2deg);
}

.form-container h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.form-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.order-form {
    background: white;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    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: #1abc9c;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #1abc9c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #16a085;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 188, 156, 0.3);
}

.trust-elements {
    padding: 80px 5%;
    background: white;
}

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

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.trust-item p {
    font-size: 1rem;
    color: #666;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-column {
    flex: 1;
}

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

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

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

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #1abc9c;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    backdrop-filter: blur(10px);
    padding: 25px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content a {
    color: #1abc9c;
}

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

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

.btn-accept {
    background: #1abc9c;
    color: white;
}

.btn-accept:hover {
    background: #16a085;
}

.btn-reject {
    background: #95a5a6;
    color: white;
}

.btn-reject:hover {
    background: #7f8c8d;
}

.cookie-banner.hidden {
    display: none;
}

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

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story {
    padding: 100px 5%;
}

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

.story-text-wide {
    width: 55%;
}

.story-text-wide h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.story-text-wide p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image-offset {
    width: 40%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(-2deg);
}

.story-image-offset img {
    width: 100%;
    height: 100%;
}

.values-diagonal {
    padding: 100px 5%;
    background: #f8f9fa;
    transform: skewY(-2deg);
    margin: 80px 0;
}

.values-diagonal h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
    transform: skewY(2deg);
}

.values-grid {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    transform: skewY(2deg);
}

.value-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.team-asymmetric {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.team-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.team-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.team-highlight {
    background: #ecf0f1;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #1abc9c;
}

.process-section {
    padding: 100px 5%;
    background: #2c3e50;
    color: white;
}

.process-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 80px;
}

.process-steps {
    display: flex;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1abc9c;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.cta-section-offset {
    padding: 100px 5%;
    text-align: center;
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    color: white;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: white;
    color: #1abc9c;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.services-hero {
    padding: 150px 5% 60px;
    text-align: center;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.services-intro {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-detailed {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.service-block-left,
.service-block-right {
    display: flex;
    gap: 70px;
    margin-bottom: 100px;
    align-items: flex-start;
}

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

.service-image {
    width: 45%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-content {
    width: 50%;
}

.service-content h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-content h3 {
    font-size: 1.3rem;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.specs-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.specs-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.specs-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1abc9c;
    font-weight: bold;
    font-size: 1.3rem;
}

.service-pricing {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 1.1rem;
    color: #666;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1abc9c;
}

.comparison-table-section {
    padding: 80px 5%;
    background: #f8f9fa;
}

.comparison-table-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
}

.table-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.specs-table {
    width: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.specs-table thead {
    background: #2c3e50;
    color: white;
}

.specs-table th,
.specs-table td {
    padding: 18px 25px;
    text-align: left;
}

.specs-table tbody tr {
    border-bottom: 1px solid #ecf0f1;
}

.specs-table tbody tr:hover {
    background: #f8f9fa;
}

.contact-hero {
    padding: 150px 5% 60px;
    text-align: center;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.contact-intro {
    font-size: 1.3rem;
    opacity: 0.9;
}

.contact-content {
    padding: 80px 5%;
}

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

.contact-info-block {
    width: 45%;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 40px;
}

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    font-size: 1.3rem;
    color: #34495e;
    margin-bottom: 10px;
}

.info-item p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
}

.email-display {
    color: #2c3e50;
    font-weight: 600;
}

.contact-map-placeholder {
    width: 50%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 62, 80, 0.7);
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-additional {
    padding: 60px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.additional-info h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 25px;
}

.additional-info p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 5%;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.selected-service {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
}

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

.thanks-info {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #1abc9c;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #16a085;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: #95a5a6;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

.legal-page {
    padding: 150px 5% 80px;
}

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

.legal-container h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #34495e;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-container h3 {
    font-size: 1.3rem;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.legal-container h5 {
    font-size: 1rem;
    color: #555;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 600;
}

.legal-container p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-container ul {
    margin: 15px 0 25px 30px;
    line-height: 1.8;
}

.legal-container ul li {
    margin-bottom: 10px;
    color: #555;
}

.last-updated {
    font-size: 0.95rem;
    color: #999;
    font-style: italic;
    margin-bottom: 30px;
}

.legal-container a {
    color: #1abc9c;
    text-decoration: none;
}

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

.no-link {
    color: #666;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-offset {
        width: 100%;
        padding-right: 0;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        width: 100%;
        transform: none;
        margin-top: 40px;
    }

    .intro-offset,
    .insight-container,
    .story-container,
    .contact-layout {
        flex-direction: column;
    }

    .intro-narrow,
    .intro-wide-image,
    .insight-text,
    .insight-image-block,
    .story-text-wide,
    .story-image-offset,
    .contact-info-block,
    .contact-map-placeholder {
        width: 100%;
    }

    .product-card-offset-left,
    .product-card-offset-right,
    .service-block-left,
    .service-block-right {
        flex-direction: column;
    }

    .product-image,
    .product-info,
    .service-image,
    .service-content {
        width: 100%;
    }

    .values-grid,
    .process-steps,
    .trust-grid {
        flex-direction: column;
    }

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

    .testimonial-large,
    .testimonial-small,
    .testimonial-medium {
        width: 100%;
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .section-title-offset {
        font-size: 2rem;
        margin-left: 0;
    }

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

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