/* Base Styles & Variables */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #60a5fa;
    --secondary-color: #10b981;
    --accent-color: #f97316;
    --text-color: #1f2937;
    --text-light: #4b5563;
    --text-lighter: #9ca3af;
    --bg-color: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark: #f3f4f6;
    --border-color: #e5e7eb;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --border-radius: 6px;
    --transition: all 0.3s ease;
    --header-height: 70px;
    --container-max-width: 1200px;
    --font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Reset & Global Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%; /* 10px = 1rem */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-base);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1.5rem;
    color: var(--text-color);
}

h1 {
    font-size: 3.6rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.2rem;
}

p {
    margin: 0 0 2rem;
}

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

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    font-family: var(--font-base);
    font-size: 1.6rem;
}

input, textarea {
    font-family: var(--font-base);
    font-size: 1.6rem;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Progress Reading Bar */
.progress-container {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 4px;
    background: transparent;
}

.progress-bar {
    height: 4px;
    background: var(--primary-color);
    width: 0;
}

/* Header Styles */
header {
    background-color: var(--bg-color);
    box-shadow: 0 2px 10px var(--shadow-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

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

/* Font Size Control */
.font-size-control {
    display: flex;
    align-items: center;
}

#increaseFontBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.8rem 1.2rem;
    transition: var(--transition);
    color: var(--text-color);
}

#increaseFontBtn:hover {
    background: var(--bg-dark);
}

#increaseFontBtn svg {
    margin-right: 0.5rem;
}

#increaseFontBtn span {
    font-weight: 500;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 0;
}

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

.hero-content p {
    font-size: 1.8rem;
    color: var(--text-light);
}

.hero-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-color);
}

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

/* Posts Section */
.posts-section {
    padding: 6rem 0;
}

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

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
}

.post-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 10px var(--shadow-color);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

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

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 2rem;
}

.post-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.post-content h3 a {
    color: var(--text-color);
}

.post-content h3 a:hover {
    color: var(--primary-color);
}

.post-meta {
    color: var(--text-lighter);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.post-excerpt {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.read-more {
    display: inline-block;
    font-weight: 500;
    transition: var(--transition);
}

.read-more:hover {
    transform: translateX(5px);
}

/* Newsletter Section */
.newsletter {
    background-color: var(--bg-dark);
    padding: 6rem 0;
    margin: 6rem 0;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 2rem;
}

.newsletter p {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

/* Footer Styles */
footer {
    background-color: var(--bg-dark);
    padding: 6rem 0 0;
    color: var(--text-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-logo p {
    color: var(--text-light);
    margin-bottom: 0;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-light);
    transition: var(--transition);
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-contact i {
    margin-right: 1rem;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: var(--bg-color);
    border-radius: 50%;
    color: var(--text-color);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 1.4rem;
    color: var(--text-light);
}

.footer-policies {
    display: flex;
    gap: 2rem;
    font-size: 1.4rem;
}

.footer-policies a {
    color: var(--text-light);
}

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

/* About Page Styles */
.about-hero {
    padding: 6rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero-content h1 {
    margin-bottom: 2rem;
}

.about-hero-content p {
    font-size: 1.8rem;
    color: var(--text-light);
}

.about-hero-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-color);
}

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

.mission-vision {
    padding: 6rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.mission, .vision {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px var(--shadow-color);
}

.mission h2, .vision h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.mission p, .vision p {
    color: var(--text-light);
    margin-bottom: 0;
}

.team-section {
    padding: 6rem 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--text-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem;
}

.team-member {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 10px var(--shadow-color);
    transition: var(--transition);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h3 {
    margin: 1.5rem 0 0.5rem;
    font-size: 1.8rem;
}

.team-member p {
    margin: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    background-color: var(--bg-color);
    border-radius: 50%;
    color: var(--text-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

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

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

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem;
}

.value-card {
    background-color: var(--bg-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px var(--shadow-color);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    margin-bottom: 2rem;
}

.value-card h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Contact Page Styles */
.contact-hero {
    padding: 6rem 0;
    text-align: center;
}

.contact-hero-content h1 {
    margin-bottom: 2rem;
}

.contact-hero-content p {
    font-size: 1.8rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-section {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2, .contact-form-container h2 {
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    margin-right: 1.5rem;
    color: var(--primary-color);
}

.contact-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.contact-text p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.social-contact {
    margin-top: 3rem;
}

.contact-form-container {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px var(--shadow-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.form-group label {
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
}

.checkbox-group a {
    text-decoration: underline;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    margin-top: 1rem;
}

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

.map-section {
    padding: 6rem 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 10px var(--shadow-color);
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-light);
    color: var(--text-light);
}

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

/* Blog Post Styles */
.blog-post {
    padding: 6rem 0;
}

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

.post-header h1 {
    margin-bottom: 2rem;
    font-size: 3.8rem;
}

.post-meta {
    color: var(--text-lighter);
    font-size: 1.6rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.post-featured-image {
    margin-bottom: 4rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-color);
}

.post-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.post-content {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.post-content h2 {
    margin-top: 4rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.post-content p {
    margin-bottom: 2rem;
    color: var(--text-color);
}

.post-tags {
    max-width: 800px;
    margin: 0 auto 3rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.tags-title {
    font-weight: 500;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tags-list a {
    display: block;
    padding: 0.5rem 1.5rem;
    background-color: var(--bg-light);
    border-radius: 3rem;
    color: var(--text-light);
    font-size: 1.4rem;
    transition: var(--transition);
}

.tags-list a:hover {
    background-color: var(--primary-light);
    color: white;
}

.share-post {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.share-post h3 {
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.share-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: var(--bg-light);
    border-radius: 50%;
    color: var(--text-color);
    transition: var(--transition);
}

.share-buttons a:hover {
    background-color: var(--primary-color);
    color: white;
}

.author-bio {
    max-width: 800px;
    margin: 0 auto 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h3 {
    margin-bottom: 0.5rem;
}

.author-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.author-info p:not(.author-role) {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.author-social {
    display: flex;
    gap: 1rem;
}

.post-navigation {
    max-width: 800px;
    margin: 0 auto 4rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.nav-previous, .nav-next {
    flex: 1;
}

.nav-previous {
    text-align: left;
}

.nav-next {
    text-align: right;
}

.nav-direction {
    display: block;
    font-size: 1.4rem;
    color: var(--text-lighter);
    margin-bottom: 0.5rem;
}

.nav-title {
    font-weight: 500;
}

.related-posts {
    padding: 4rem 0;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem;
    padding: 0 3rem;
}

.related-post {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 10px var(--shadow-color);
    transition: var(--transition);
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.related-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-post h3 {
    padding: 1.5rem;
    font-size: 1.6rem;
    margin-bottom: 0;
}

.related-post .post-date {
    padding: 0 1.5rem 1.5rem;
    font-size: 1.3rem;
    color: var(--text-lighter);
    display: block;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px var(--shadow-color);
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    animation: modalOpen 0.3s ease;
}

@keyframes modalOpen {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background-color: var(--primary-color);
    color: white;
}

.modal-header h2 {
    margin-bottom: 0;
    color: white;
}

.close-modal {
    font-size: 2.4rem;
    font-weight: bold;
    cursor: pointer;
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.modal-icon {
    margin: 2rem auto;
    width: 5rem;
    height: 5rem;
    color: var(--secondary-color);
}

.close-btn {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    transition: var(--transition);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-color);
    box-shadow: 0 -2px 10px var(--shadow-color);
    z-index: 999;
    padding: 2rem;
    display: none;
}

.cookie-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 1.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

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

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

.cookie-btn.customize,
.cookie-btn.reject {
    background-color: var(--bg-light);
    color: var(--text-color);
}

.cookie-btn.customize:hover,
.cookie-btn.reject:hover {
    background-color: var(--bg-dark);
}

.cookie-policy {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.cookie-policy a {
    text-decoration: underline;
}

/* Responsive Styles */
@media screen and (max-width: 900px) {
    html {
        font-size: 56.25%; /* 9px = 1rem */
    }

    .hero, .about-hero, .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        gap: 4rem;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 50%; /* 8px = 1rem */
    }

    .header-content {
        flex-direction: column;
        height: auto;
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-links {
        margin: 1rem 0;
    }

    .posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

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

    .newsletter-form button {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-policies {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .post-navigation {
        flex-direction: column;
    }

    .nav-previous, .nav-next {
        text-align: center;
    }

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

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .author-social {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .post-tags {
        flex-direction: column;
        align-items: flex-start;
    }
}
