/* /Layout/Components/BackToTop.razor.rz.scp.css */
#back-to-top[b-8q0do0m5dr] {
    position: fixed;
    bottom: 80px;
    right: 120px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 30px;
    border-radius: 50%;
    text-decoration: none;
    z-index: 1000;
    border: 0;
}


#back-to-top img[b-8q0do0m5dr] {
    width: 50px;
    height: 50px;
}

#back-to-top:hover[b-8q0do0m5dr] {
    transform: scale(1.3);
    transition: transform 0.2s;
}
@media (max-width: 1650px) {
    #back-to-top[b-8q0do0m5dr] {
        display: none;
    }
}
/* /Layout/Components/Footer.razor.rz.scp.css */

.footer-col[b-hvqvg3t189] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

#socials[b-hvqvg3t189] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 10px;
}

.social-icon[b-hvqvg3t189] {
    width: 50px;
    height: auto;
    margin: 4px;
}

#email[b-hvqvg3t189] {
    font-size: 24px;
    font-family: "Avenir", serif;
    margin-top: 5px;
}
/* /Layout/Components/Header.razor.rz.scp.css */
.logobox[b-jjkgwsjp3m] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3px;
}

hr[b-jjkgwsjp3m] {
    border: none;
    height: 5px;
    color: #333;
    background-color: #333;
    margin-bottom: 0;
    margin-top: 2px;
    width: 100%;
}

header[b-jjkgwsjp3m] {
    position: fixed;
    top: 0;
    height: auto;
    width: 100%;
    z-index: 1000; /* Ensure it appears on top */
    background: #f4ece6; /* Add background color if needed */
    transition: 0.3s ease-in;
}

.offcanvas-fullscreen[b-jjkgwsjp3m] {
    height: 100%;
    max-height: none;
    background: #f4ece6;
}

.full-screen-collapse[b-jjkgwsjp3m] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    z-index: 1050;
}

.btn-close[b-jjkgwsjp3m]{
    background-image: url("Content/Images/Icons/x-lg.svg");
    background-size: 60px 60px;
    margin-right: 30px;
    margin-top: 30px;
}

#header.hidden[b-jjkgwsjp3m] {
    transform: translateY(-100%);
}

.header-icon[b-jjkgwsjp3m]{
    height: 70px;
}


@media (max-width: 767px) {
    header[b-jjkgwsjp3m] {
        position: static;
    }

    h1[b-jjkgwsjp3m] {
        font-size: 35px;
    }

    h3[b-jjkgwsjp3m] {
        font-size: 25px !important;
    }
}
/* /Layout/Components/Navbar.razor.rz.scp.css */
/* Main navbar styles */
.navbar[b-fntazoo5t8] {
    padding: 10px;
    text-align: center;
    justify-content: center;
}


.navbar-menu[b-fntazoo5t8] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 15px;
    font-size: 25px;
}

.dropdown:hover > .dropdown-menu[b-fntazoo5t8] {
    display: block;
}

.dropdown > .dropdown-toggle:active[b-fntazoo5t8] {
    pointer-events: none;
}

.dropdown-menu > li[b-fntazoo5t8] {
    font-size: 20px;
    text-align: center;
}

.dropdown-menu-center[b-fntazoo5t8] {
    right: auto !important;
    left: 50% !important;
    top: 100% !important;
    -webkit-transform: translate(-50%, 0) !important;
    -o-transform: translate(-50%, 0) !important;
    transform: translate(-50%, 0) !important;
}

.nav-link[b-fntazoo5t8] {
    border-left: grey 2px solid;
}

.nav-link:hover[b-fntazoo5t8], .dropdown-item:hover[b-fntazoo5t8]{
    background-color: #dbd0c8; !important;
}

.menu-item[b-fntazoo5t8] {
    position: relative;
}

.dropdown-item[b-fntazoo5t8]{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e6dace;
}

.menu-item a[b-fntazoo5t8] {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* Submenu styles */
.submenu[b-fntazoo5t8] {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%; /* Position below the main item */
    left: 0;
    padding: 10px 0;
    list-style: none;
    min-width: 150px;
}

.submenu li[b-fntazoo5t8] {
    padding: 5px 20px;
}

.submenu li a[b-fntazoo5t8] {
    color: #333;
    text-decoration: none;
}

/* Show submenu on hover */
.menu-item:hover .submenu[b-fntazoo5t8] {
    display: block; /* Only display on hover */
}

@media (max-width: 767px) {

    .navbar[b-fntazoo5t8] {
        display: block;
        padding: 10px;
    }

    .navbar-menu[b-fntazoo5t8] {
        display: flex;
        flex-direction: column; /* Stack items vertically */
        font-size: 20px;
    }

    .nav-link[b-fntazoo5t8] {
        border-left: 0;
        font-size: 35px;
    }

    .dropdown-menu[b-fntazoo5t8] {
        display: none; /* Hidden by default */
        position: relative; /* Change from absolute to relative */
        padding: 0; /* Remove extra padding for a clean look */
    }

    .dropdown-menu.show[b-fntazoo5t8] {
        display: block; /* Show dropdown when active */
    }

    .dropdown-menu > li[b-fntazoo5t8] {
        font-size: 25px; /* Adjust font size */

        text-align: center;
    }

    .dropdown[b-fntazoo5t8] {
        width: 100%; /* Ensure dropdowns stretch full width */
    }

    .menu-item[b-fntazoo5t8] {
        width: 100%;
    }
}
/* /Pages/AboutMe.razor.rz.scp.css */
.about-me-container[b-vc1rxuirtp] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.text-block[b-vc1rxuirtp] {
    display: flex;
    flex-direction: column;
    width: 50%;
    position: relative;
    z-index: 2;
    margin-left: -100px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: #c4bdb9;
}

.text-block p[b-vc1rxuirtp] {
    font-size: 18px;
}



.image-block[b-vc1rxuirtp] {
    width: 50%;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.image-block img[b-vc1rxuirtp] {
    border: #c4bdb9 4px solid;
    width: 535px;
    height: auto;
    display: block;
}

/*  */

.attributes-container[b-vc1rxuirtp] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px;
}

.info-box[b-vc1rxuirtp] {
    flex: 1 1 calc(25% - 20px);
    box-sizing: border-box;
    border: 1px solid black;
    padding: 10px 20px 10px 20px;
    margin: 10px;
}

.info-box h2[b-vc1rxuirtp] {
    margin-top: 0;
    font-size: 1.5em;
}

.info-box ul[b-vc1rxuirtp] {
    list-style-type: disc;
    padding-left: 20px;
}

.info-box p[b-vc1rxuirtp] {
    margin-bottom: 10px;
}

.info-box

li[b-vc1rxuirtp] {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.about-me-text p[b-vc1rxuirtp]{
    font-size: 20px;
    line-height: 1.5;
}

@media (max-width: 1000px) {
    .about-me-container[b-vc1rxuirtp] {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .text-block[b-vc1rxuirtp],
    .image-block[b-vc1rxuirtp] {
        width: 100%;
        margin-right: 0;
        margin: 0;
        padding: 20px;
    }


    .image-block img[b-vc1rxuirtp] {
        width: 380px
    }

    .text-block[b-vc1rxuirtp] {
        margin-bottom: 20px;
    }
}

@media (max-width: 450px) {
    .image-block img[b-vc1rxuirtp] {
        width: 280px;
    }
}
/* /Pages/Home/Components/Books.razor.rz.scp.css */
#books[b-1jjzq4g1iv] {
    text-align: center;
}

.book-img[b-1jjzq4g1iv]{
    margin: 15px;
    width:260px;
    height: auto;
}
/* /Pages/Home/Components/GroupProject.razor.rz.scp.css */
.video-container[b-zreon85km6] {
    position: relative;
    border: 10px solid #cac5b8;
    box-shadow: 0 5px 5px grey;
    border-radius: 10px;
    line-height: 0;
}

iframe[b-zreon85km6] {
    aspect-ratio: 16 / 9;
    width: 100%;
    max-width: 1200px;
}

h5[b-zreon85km6] {
    font-size: 30px;
    margin-bottom: 5px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-style: normal;
}


p[b-zreon85km6] {
    font-size: 22px;
    line-height: 1.5;
}

.btn[b-zreon85km6] {
    margin-top: 10px;
}

span[b-zreon85km6] {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
    white-space: nowrap;
}

.project-header[b-zreon85km6] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.project-header h2[b-zreon85km6] {
    margin: 0;
}

.project-logo[b-zreon85km6] {
    width: 50px;
    height: auto;
}


.icon-logo[b-zreon85km6] {
    width: 26px; /* Adjust as needed */
    height: 26px;
}

.d-flex.align-items-center.me-4[b-zreon85km6] {
    flex: 1;
}

.info-box[b-zreon85km6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}


.badge-overlay[b-zreon85km6] {
    position: absolute; /* Position the badge absolutely within the container */
    top: 5px; /* Adjust the position as needed */
    right: 10px; /* Adjust the position as needed */
    width: 100px; /* Set the desired width */
    height: auto; /* Maintain aspect ratio */
    z-index: 1; /* Ensure the badge appears above the video */
    background: transparent !important;
}

@media (max-width: 1200px) {

    .video-container[b-zreon85km6] {
        margin-bottom: 20px;
    }
}
/* /Pages/Home/Components/GroupProjects.razor.rz.scp.css */
#group-projects[b-1d5rjitxvd] {
    justify-content: center;
    text-align: center;
}


/* /Pages/Home/Components/Intro.razor.rz.scp.css */
#profile-img[b-f8gbumdfli] {
    border-radius: 50%;
    width: 270px;
}

#occupation[b-f8gbumdfli] {
    font-weight: 600;
    font-size: x-large;

}

#socials[b-f8gbumdfli]{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 10px;
}

.about-content[b-f8gbumdfli] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
}

.profile[b-f8gbumdfli] {
    display: flex;
    justify-content: center;
}

.about-content p[b-f8gbumdfli] {
    font-size: 30px;
}

.social-icon[b-f8gbumdfli]{
    width: 40px;
    height: 40px;
    margin: 4px;
}





/* /Pages/Home/Components/PersonalProject.razor.rz.scp.css */
.project-card[b-v60ko2einr] {
    border: #938f8b solid 4px;
    border-radius: 10px;
    background: #d3cdc9;
}

/* Video Container */
.video-container[b-v60ko2einr] {
    position: relative;
    overflow: hidden;
}

.video-container video[b-v60ko2einr] {
    width: 100%;
    height: auto;
    display: block;
}

.card-body[b-v60ko2einr] {
    display: flex;
    flex-direction: column;
    text-align: left !important;
    border-radius: 10px;
    background: #d3cdc9;
}

.card-body a[b-v60ko2einr] {
    text-align: left !important;
}

.card-body p[b-v60ko2einr] {
    font-size: 18px;
}

.info-bar .d-flex[b-v60ko2einr] {
    align-items: center;
}

.info-bar span[b-v60ko2einr] {
    font-size: 20px;
    white-space: nowrap; /* Prevent text wrapping */
}

/* Hover Effect on Card */
.project-card:hover[b-v60ko2einr] {
    transform: scale(1.02);
    transition: transform 0.2s;
}

/* Info Bar Styles */
.info-bar[b-v60ko2einr] {
    position: absolute;
    bottom: 0;
    left: 0; /* Ensures compatibility across browsers */
    width: 100%;
    background: rgba(148, 153, 157, 0.8); /* Semi-transparent background */
    z-index: 0; /* Places the info bar above the video */
}

.info-bar *[b-v60ko2einr] {
    background: transparent;
}

.info-icon[b-v60ko2einr] {
    width: 25px; /* Adjust the size as needed */
    height: 25px;
}

.arrow[b-v60ko2einr]{
    width: 25px;
    height: 25px;
}
/* /Pages/Home/Components/Skills.razor.rz.scp.css */

h2[b-lovhc37m61] {
    text-align: center;
}

#skills[b-lovhc37m61] {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.skills-container[b-lovhc37m61] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

}

.skills-container-large[b-lovhc37m61] {
    text-align: center;
    width: 420px;
}

.double-width[b-lovhc37m61] {
    max-width: 220px;
    width: auto;
    height: auto;
}

.triple-width[b-lovhc37m61] {
    max-width: 300px;
    width: auto;
    height: auto;
}

.single-width[b-lovhc37m61] {
    max-width: 120px;
    width: auto;
    height: auto;
}

.horizontal[b-lovhc37m61] {
    width: auto;
    height: auto;
}

.skill-box[b-lovhc37m61] {
    position: relative;
    top: 0px;
    border: 10px solid #cac5b8;
    box-shadow: 0px 5px 5px grey;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
    border-radius: 25px;
    margin: 0 auto;
    gap: 10px;
}

header hr[b-lovhc37m61] {
    border-bottom: solid 5px black;
    margin-bottom: 0;
    width: 100%
}

.skill-logo[b-lovhc37m61] {
    width: 80px;
    height: 80px;
}

@media (max-width: 1200px) {

    .horizontal[b-lovhc37m61] {
        max-width: 310px;
        width: auto;
        height: auto;
    }

}
/* /Pages/Projects/GroupProjects/ARPG.razor.rz.scp.css */
p[b-k1a9ccihwr], li[b-k1a9ccihwr] {
    font-size: 20px;
}

li[b-k1a9ccihwr] {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

section[b-k1a9ccihwr] {
    padding-bottom: 15px;
}

.enemies-section[b-k1a9ccihwr] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px 0;
    gap: 20px;
}

.enemy-card[b-k1a9ccihwr] {
    display: flex;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.enemy-gif[b-k1a9ccihwr] {
    width: 180px;
    height: 180px;
    border: 5px solid #cac5b8;
    margin-right: 5px;
    margin-bottom: 2px;
}

.enemy-info[b-k1a9ccihwr] {
    padding-left: 15px;
    flex: 1;
}

.enemy-info h3[b-k1a9ccihwr] {
    margin-top: 0;
    margin-bottom: 10px;
}

.enemy-info p[b-k1a9ccihwr] {
    margin: 0;
}

@media (max-width: 500px) {
    .enemy-card[b-k1a9ccihwr] {
        flex-direction: column; /* Stack image on top and text below */
        align-items: center; /* Center content for better layout */
    }

    .enemy-gif[b-k1a9ccihwr] {
        margin-right: 0;
        margin-bottom: 10px; /* Add spacing between image and text */
    }

    .enemy-info[b-k1a9ccihwr] {
        padding-left: 0; /* Remove unnecessary padding */
        text-align: center; /* Center-align the text for better appearance */
    }

    .enemies-section h2[b-k1a9ccihwr] {
        text-align: center;
    }
}


/* /Pages/Projects/GroupProjects/CursorChaos.razor.rz.scp.css */
p[b-992erkrt6u], li[b-992erkrt6u] {
    font-size: 20px;
}

li[b-992erkrt6u] {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

section[b-992erkrt6u] {
    padding-bottom: 15px;
}


.three-column-list[b-992erkrt6u] {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 3 equal columns */
    gap: 10px; /* Optional: adds space between items */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
}



/* /Pages/Projects/GroupProjects/LighthouseOfShadows.razor.rz.scp.css */
p[b-nxjjshk27l], li[b-nxjjshk27l] {
    font-size: 20px;
}

li[b-nxjjshk27l] {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

section[b-nxjjshk27l] {
    padding-bottom: 15px;
}

.three-column-list[b-nxjjshk27l] {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 3 equal columns */
    gap: 10px; /* Optional: adds space between items */
}



/* /Pages/Projects/GroupProjects/Vanta.razor.rz.scp.css */
p[b-vgspmzwwdf], li[b-vgspmzwwdf] {
    font-size: 20px;
}

li[b-vgspmzwwdf] {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

section[b-vgspmzwwdf] {
    padding-bottom: 20px;
}

.three-column-list[b-vgspmzwwdf] {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 3 equal columns */
    gap: 10px; /* Optional: adds space between items */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
}



/* /Pages/Projects/Shared/CodeDropdown.razor.rz.scp.css */

.strip[b-7qtgf08imy] {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
}

.title[b-7qtgf08imy],
.title u:hover[b-7qtgf08imy],
.title strong:hover[b-7qtgf08imy] {
    color: grey;
}

.icon[b-7qtgf08imy] {
    font-size: 1.5rem;
    margin-right: 10px;
}

.title > *[b-7qtgf08imy] {
    font-size: 28px;
    margin-right: 15px;
    color: black;
    text-align: left;
    word-wrap: break-word; /* Prevent text overflow */
}

.dropdown[b-7qtgf08imy] {
    color: #ffffff;
    padding: 10px;
    max-height: 800px;
    border: 1px solid #ccc;
    overflow-y: auto; /* Use auto for a better scroll experience */
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.fade-out[b-7qtgf08imy] {
    opacity: 0;
}

.logo[b-7qtgf08imy] {
    width: 30px;
    height: 30px;
}

pre[b-7qtgf08imy] {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .strip[b-7qtgf08imy] {
        align-items: flex-start;
    }

    .title[b-7qtgf08imy] {
        margin-bottom: 5px;
        text-align: center;
    }

    .title u[b-7qtgf08imy]{
        font-size: 22px;
    }

    .logo[b-7qtgf08imy] {
        align-self: center; /* Center the logo */
        margin-top: 5px; /* Add spacing between title and logo */
    }

    .dropdown[b-7qtgf08imy] {
        font-size: 14px; /* Adjust dropdown content font size */
        max-height: 400px; /* Limit max height for smaller screens */
        overflow-y: auto; /* Ensure scroll works properly */
    }
}

/* /Pages/Projects/Shared/ProjectIntro.razor.rz.scp.css */
.project-page[b-1dl5e1uw0r] {
    text-align: center;
    padding: 20px;
}

.project-title[b-1dl5e1uw0r] {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #333;
}

.video-showcase[b-1dl5e1uw0r] {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    /*height: 50vh;*/
    max-width: 1200px; /* Adjust as needed */
    margin: 0 auto;
}

.video-wrapper[b-1dl5e1uw0r]::before {
    content: '';
    display: block;
    padding-top: 56.25%; /* 16:9 aspect ratio (9/16*100) */
}

.video-showcase iframe[b-1dl5e1uw0r] {
    aspect-ratio: 16 / 9;
    width: 100%;
    /*height: 100%;*/
    max-width: 1200px;
    border-radius: 10px;
    border: 10px solid #cac5b8;
    box-shadow: rgb(102, 102, 102) 8px 8px 8px 0px
}

.info-section[b-1dl5e1uw0r] {
    display: flex;
    justify-content: start;
    align-items: flex-start;
    gap: 20px;
    text-align: start;
    margin: 30px auto;
}

.description[b-1dl5e1uw0r],
.details[b-1dl5e1uw0r] {
    background: #cac5b8;
    border: 1px solid black;
    border-radius: 8px;
    padding: 20px;
    font-size: 20px;
    box-shadow: rgb(102, 102, 102) 8px 8px 8px 0px
}

/* Description Box (60%) */
.description[b-1dl5e1uw0r] {
    flex: 3;
}

/* Details Box (40%) */
.details[b-1dl5e1uw0r] {
    flex: 2;
}

.details ul[b-1dl5e1uw0r] {
    list-style: none;
    padding: 0;
}

.details li[b-1dl5e1uw0r] {
    margin: 10px 0;
    text-align: left;
    font-size: 22px;
}

.github-icon[b-1dl5e1uw0r] {
    width: 50px;
    height: 50px;
}

.icon-logo[b-1dl5e1uw0r]
{
    width: 25px;
    height: 25px;
}


@media (max-width: 768px) {
    .info-section[b-1dl5e1uw0r] {
        flex-direction: column;
        gap: 10px;
    }

    .description[b-1dl5e1uw0r],
    .details[b-1dl5e1uw0r] {
        width: 100%;
    }
}
/* /Pages/Projects/Shared/ProjectPicture.razor.rz.scp.css */
img[b-9uxqkkq3h2] {
    border: 8px solid #cac5b8;
}
/* /Pages/Projects/SoloProjects/A-Star.razor.rz.scp.css */
p[b-o5vddek7e4], li[b-o5vddek7e4] {
    font-size: 20px;
}

li[b-o5vddek7e4] {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

section[b-o5vddek7e4] {
    padding-bottom: 15px;
}

.three-column-list[b-o5vddek7e4] {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 3 equal columns */
    gap: 10px; /* Optional: adds space between items */
}



/* /Pages/Projects/SoloProjects/BoatShooter.razor.rz.scp.css */
p[b-1lyxymejkk], li[b-1lyxymejkk] {
    font-size: 20px;
}

li[b-1lyxymejkk] {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

section[b-1lyxymejkk] {
    padding-bottom: 15px;
}

.three-column-list[b-1lyxymejkk] {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 3 equal columns */
    gap: 10px; /* Optional: adds space between items */
}



/* /Pages/Projects/SoloProjects/ECS.razor.rz.scp.css */
p[b-y4st6lv953], li[b-y4st6lv953] {
    font-size: 20px;
}

li[b-y4st6lv953] {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

section[b-y4st6lv953] {
    padding-bottom: 15px;
}

.three-column-list[b-y4st6lv953] {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 3 equal columns */
    gap: 10px; /* Optional: adds space between items */
}



