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

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 1rem;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 12px;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    width: 93%;
    max-width: 1400px;
}

.nav-buttons {
    margin-left: auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

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

.nav-links a {
    color: #444;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #5889ce;
}

.nav-buttons {
    display: flex;
    gap: 0.8rem;
}

.nav-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-btn-secondary {
    background: #2c3e50;
    color: white;
}

.nav-btn-secondary:hover {
    background: #1a252f;
}

.nav-btn-primary {
    background: #5889ce;
    color: white;
}

/* Hamburger Menu */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

.nav-menu-mobile {
    display: none;
}

.nav-btn-primary:hover {
    background: #4a73b5;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.btn-hero {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.btn-hero:hover {
    background: #ffffff;
    color: #2c3e50;
}

/* General Section Styles */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-label-text {
    display: block;
    font-size: 0.9rem;
    color: #5889ce;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.section-description {
    color: #666;
    font-size: 1rem;
}

/* Kadai (Problem) Section */
.kadai-section {
    max-width: 100%;
    padding: 5rem 2rem;
    background: #e8f4fc;
}

.kadai-title {
    text-align: center;
    font-size: 2rem;
    color: #1a3a5c;
    margin-bottom: 3rem;
    font-weight: 700;
}

.kadai-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.kadai-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem 1.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: visible;
    margin-bottom: 100px;
}

.kadai-card-number {
    width: 45px;
    height: 45px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.kadai-card h3 {
    font-size: 1.1rem;
    color: #1a3a5c;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 700;
}

.kadai-card ul {
    list-style: none;
    width: 100%;
    margin-bottom: 0;
    flex-grow: 0;
}

.kadai-card ul li {
    padding: 0.4rem 0;
    color: #444;
    font-size: 0.85rem;
    position: relative;
    padding-left: 1.2rem;
    line-height: 1.5;
    font-weight: 400;
}

.kadai-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.kadai-card-image {
    margin-top: 0.5rem;
    text-align: center;
    width: 100%;
    position: relative;
    top: 80px;
}

.kadai-card-image img {
    max-width: 100%;
    height: auto;
}

.kadai-card-image-2 {
    top: 120px;
}

.kadai-card-image-3 {
    top: 40px;
}

/* Services Section */
.services-section {
    background: #e8f4fc;
    max-width: 100%;
    padding: 5rem 2rem;
}

.services-section .section-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card-number {
    width: 50px;
    height: 50px;
    background: #5889ce;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.service-card-plan {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-card-headline {
    font-size: 1.1rem;
    color: #1a3a5c;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-weight: 600;
}

.service-card-expand-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    background: #f0f7ff;
    transition: background 0.3s ease;
}

.service-card-expand-toggle:hover {
    background: #e0efff;
}

.expand-icon {
    color: #5889ce;
    transition: transform 0.3s ease;
}

.service-card.expanded .expand-icon {
    transform: rotate(180deg);
}

.expand-text {
    color: #5889ce;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-card.expanded .expand-text {
    display: none;
}

.service-card-details {
    display: none;
    margin-bottom: 1.5rem;
}

.service-card.expanded .service-card-details {
    display: block;
}

.service-description {
    color: #444;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: center;
}

.service-card-points {
    margin-bottom: 1.5rem;
}

.points-label {
    font-size: 0.95rem;
    color: #1a3a5c;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-card-points ul {
    list-style: none;
    margin-bottom: 0;
    flex-grow: 0;
}

.service-card-points ul li {
    padding: 0.4rem 0;
    color: #444;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.2rem;
    line-height: 1.6;
}

.service-card-points ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #5889ce;
    font-weight: bold;
}

.service-card-closing {
    text-align: center;
    color: #1a3a5c;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.6;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e8f4fc;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #5889ce;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: #4a73b5;
    transform: scale(1.05);
}

/* Case Studies Section */
.cases-section {
    background: #ffffff;
    max-width: 100%;
    padding: 5rem 0;
}

.cases-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cases-title {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.cases-title h2 {
    font-size: 2rem;
    color: #1a3a5c;
    margin: 0;
}

.cases-label {
    font-size: 1rem;
    color: #5889ce;
    font-weight: 500;
}

.cases-view-all {
    background: #5889ce;
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cases-view-all:hover {
    background: #4a73b5;
    transform: scale(1.02);
}

/* Cases Carousel */
.cases-carousel-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 80px;
}

.cases-viewport {
    overflow: hidden;
    width: 1140px;
    margin: 0 auto;
}

.cases-grid {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    align-items: stretch;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #5889ce;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(88, 137, 206, 0.3);
}

.carousel-arrow:hover {
    background: #4a73b5;
    transform: translateY(-50%) scale(1.05);
}

.carousel-arrow-left {
    left: 10px;
}

.carousel-arrow-right {
    right: 10px;
}

.case-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 360px;
    min-width: 360px;
}

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

.case-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
}

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

.case-content {
    padding: 1.5rem;
}

.case-company {
    font-size: 1.1rem;
    color: #1a3a5c;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.case-divider {
    width: 40px;
    height: 2px;
    background: #5889ce;
    margin-bottom: 1rem;
}

.case-description {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Numbers Section */
.numbers-section {
    background: #f8f9fa;
    max-width: 100%;
    padding: 5rem 2rem;
}

.numbers-section .section-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.numbers-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.number-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
    text-align: center;
}

.number-label-top {
    font-size: 0.85rem;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.number-value {
    font-size: 3rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.number-label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Company Info Section */
.company-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f8 100%);
    max-width: 100%;
    padding: 5rem 2rem;
}

.company-section .section-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.company-info {
    max-width: 800px;
    margin: 0 auto;
}

.info-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
}

.info-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    border-bottom: 1px solid #e9ecef;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    padding: 1.5rem;
    background: #f8f9fa;
    font-weight: bold;
    color: #2c3e50;
}

.info-value {
    padding: 1.5rem;
    color: #666;
}

/* FAQ Section */
.faq-section {
    background: #fff;
    max-width: 100%;
    padding: 5rem 2rem;
}

.faq-section .section-header {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.faq-section .section-header h2 {
    font-size: 1.8rem;
    color: #1a3a5c;
}

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

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #1a3a5c;
    margin: 0;
    font-weight: 600;
}

.faq-question span {
    font-size: 1.5rem;
    color: #5889ce;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    overflow: hidden;
    height: 0;
}

.faq-answer-inner {
    padding: 0.5rem 1.5rem 1.5rem;
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8f9fa;
}

.contact-section-label {
    font-size: 0.9rem;
    color: #5889ce;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.contact-inner {
    background: linear-gradient(135deg, #4dc8c8 0%, #5bc0c0 50%, #6ab8b8 100%);
    padding: 4rem 6rem;
    border-radius: 100px;
    color: white;
    max-width: 700px;
    width: 100%;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-section p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.contact-section .contact-sub {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.contact-section .btn {
    background: transparent;
    color: white;
    font-weight: bold;
    border: 2px solid white;
    padding: 1rem 3rem;
}

.contact-section .btn:hover {
    background: white;
    color: #4dc8c8;
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #5889ce;
}

.footer-section p,
.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #5889ce;
}

.social-icons {
    display: flex;
    flex-direction: row;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.4rem;
}

.social-icon i,
.social-icon .x-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-instagram i {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-facebook i {
    color: #1877f2;
}

.social-x .x-icon {
    color: #000000;
    font-weight: 900;
    font-size: 1.6rem;
}

.footer-contact-info {
    margin-top: 1.5rem;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ecf0f1;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-contact-info i {
    color: #5889ce;
    width: 20px;
}

.social-line i {
    color: #06c755;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navbar responsive */
    .floating-nav {
        padding: 0.8rem 1rem;
        gap: 0;
        justify-content: space-between;
        border-radius: 16px;
        width: calc(100% - 2rem);
        max-width: none;
        left: 1rem;
        right: 1rem;
        transform: none;
    }

    .nav-hamburger {
        display: flex;
    }

    /* Hide desktop nav elements on mobile */
    .nav-links,
    .nav-buttons {
        display: none;
    }

    /* Mobile menu */
    .nav-menu-mobile {
        display: none;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        right: 0;
        background: #ffffff;
        border-radius: 16px;
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

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

    .nav-links-mobile {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }

    .nav-links-mobile a {
        padding: 0.8rem;
        border-radius: 8px;
        text-align: center;
        background: #f8f9fa;
        color: #444;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .nav-links-mobile a:hover {
        background: #e8f0f8;
        color: #5889ce;
    }

    .nav-buttons-mobile {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .nav-buttons-mobile .nav-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        text-align: center;
        width: 100%;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    /* Services responsive */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card-headline {
        font-size: 1rem;
    }

    .service-card-image {
        min-height: 250px;
    }

    /* Case studies responsive - vertical layout */
    .cases-section {
        padding: 3rem 0;
    }

    .cases-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .cases-carousel-container {
        padding: 0 1rem;
        max-width: 100%;
    }

    .cases-viewport {
        overflow: visible;
        width: 100%;
        max-width: 100%;
    }

    .cases-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 0;
        width: 100%;
        transform: none !important;
    }

    .carousel-arrow {
        display: none;
    }

    .case-card {
        flex: none;
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }

    .case-image {
        aspect-ratio: 3 / 4;
    }

    .cases-view-all {
        padding: 0.8rem 2rem;
        font-size: 0.85rem;
    }

    .numbers-grid {
        grid-template-columns: 1fr;
    }

    .info-row {
        grid-template-columns: 1fr;
    }

    .info-label {
        border-bottom: 1px solid #dee2e6;
    }

    .contact-inner {
        padding: 3rem 2rem;
        border-radius: 50px;
    }

    /* Kadai section responsive */
    .kadai-grid {
        grid-template-columns: 1fr;
    }

    .kadai-title {
        font-size: 1.6rem;
    }

    .kadai-card h3 {
        font-size: 1.1rem;
    }

    /* Prevent horizontal overflow */
    .kadai-section,
    .services-section,
    .cases-section,
    .numbers-section,
    .company-section,
    .faq-section,
    .contact-section {
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
