
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #EC407A;
    --text-color: #ffffff;
    --heading-font: 'Roboto', sans-serif;
    --body-font: 'Roboto', sans-serif;
    --main-color: #2196F3;
    /* --main-color:#2f2485; */
    --max-width: 1300px;
    --grad-bg: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}


html, body {
    width: 100%;
    /* overflow-x: hidden;  */
    background: var(--grad-bg);
    font-family: var(--body-font);
}


 .breadcrumb {
      position: relative;
      width: 100%;
      height: 250px; 
      background-image: url('/assets/breadcrem1.jpg');
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      color: white;
    }

    .breadcrumb::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(14, 14, 14, 0.655); /* dark overlay */
      z-index: 1;
      opacity: 9;
    }

    .breadcrumb h1 {
      width: 100%;
      text-align: center;
      font-size: 3.2rem;
      text-transform: uppercase;
      font-weight: bold;
      z-index: 2;
      position: relative;
      font-weight: 600;
    font-family: "Poppins", sans-serif;
    }

    /* Responsive text */
  
    @media (max-width: 768px) {
      .breadcrumb {
        height: 30vh;
      }
      .breadcrumb h1 {
        font-size: 2.7rem;
      }
    }

    @media (max-width: 480px) {
      .breadcrumb {
        height: 22vh;
      }
      .breadcrumb h1 {
        text-align: center;
        font-size:1.7rem;
      }
    }







.main_section {
    max-width: var(--max-width);
    margin: 2rem auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
   padding: 4rem 0;
}

.main_dets {
    width: 50%;
    padding-right: 40px;
    z-index: 2;
}

.welcome_text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.foundation_title {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.foundation_title span {
    color: var(--main-color);
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--main-color);
    margin-bottom: 25px;
}

.description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
}

.cta_group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; 
}

.btnMain {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--body-font);
}

.btnMain.primary {
    background-color: var(--main-color);
    color: var(--text-color);
    box-shadow: 0 5px 10px rgba(33, 150, 243, 0.2);
}

.btnMain.primary:hover {
    filter: brightness(0.9); 
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.3);
}

.btnMain.secondary {
    border: 2px solid var(--main-color);
    color: var(--main-color);
}

.btnMain.secondary:hover {
    background-color: var(--main-color);
    color: var(--text-color);
}


.main_dets_img {
    width: 45%;
    display: flex;
    justify-content: center;
    position: relative;
}

.img_container {
    width: 100%;
    height: 500px;
    position: relative;
    z-index: 1;
}
.img_container::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--main-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
}
.img_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* --- Responsive --- */

@media (max-width: 1024px) {
    .main_section {
        padding: 0 5%;
    }
    .foundation_title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .main_section {
        flex-direction: column-reverse; 
        padding: 60px 20px;
        justify-content: center;
        text-align: center;
    }

    .main_dets {
        width: 100%;
        padding-right: 0;
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .divider {
        margin: 0 auto 25px auto;
    }

    .main_dets_img {
        width: 100%;
    }

    .img_container {
        height: 350px;
        max-width: 350px;
    }

    .cta_group {
        justify-content: center;
    }
}



@media (max-width: 480px) {
    .foundation_title {
        font-size: 2.2rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .cta_group {
        flex-direction: column;
        width: 100%;
    }

    .btnMain {
        width: 100%;
    }

    .img_container {
        height: 280px;
    }
}










      .container1 {
        
            
            margin: 2rem 0;
        background-color: #fff;
            overflow: hidden;
            width: 100%;
        }

        .stats-banner {
            display: flex;
            align-items: stretch;
        }

        .stats-section {
            flex: 3;
            display: flex;
            padding: 80px 40px;
            gap: 60px;
            justify-content: space-around;
            
        }

        .stat-item {
            text-align: center;
            flex: 1;

            border-right: 3px solid var(--bg-color);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--main-color);
            margin-bottom: 12px;
            line-height: 1;
        }

        .stat-label {
            font-size: 1rem;
            color: #64748b;
            font-weight: 500;
        }

        .cta-section {
            flex: 1;
            background: var(--main-color);
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px 30px;
            text-align: center;
            position: relative;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 30px;
            width: 60px;
            height: 4px;
            background: var(--bg-color);
            border-radius: 2px;
        }

        .cta-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 8px;
            margin-top: 20px;
            line-height: 1.2;
        }

        .cta-subtitle {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: white;
            border: none;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .cta-button:hover {
            
            transform: translateX(5px);
        }

        .arrow {
            font-size: 1.3rem;
            transition: transform 0.2s;
        }

        .cta-button:hover .arrow {
            transform: translateX(5px);
        }

        @media (max-width: 968px) {
            .stats-banner {
                flex-direction: column;
            }

            .stats-section {
                padding: 40px 20px;
                gap: 40px;
            }

            .stat-number {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 640px) {
            .stats-section {
                flex-direction: column;
                gap: 30px;
            }

            .stat-item{
                border-right: none;
                border-bottom: 2px solid var(--bg-color);
                padding-bottom: 20px;
            }

            .stat-number {
                font-size: 2rem;
            }
        }




        .about_Xaviers{
            max-width: var(--max-width);
            margin: 2rem auto;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3rem;
            padding: 40px 20px;
        }

      
        .about_xaviers_img img{
            width: 500px;
            height: auto;
            border-radius: 15px;
        }

       
        


        .about_Xaviers_content span{
            font-size: 1rem;
            font-weight: 500;
            padding-bottom: .5rem;
            color: var(--bg-color);
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .about_Xaviers_content h2{
            font-size: 2rem;
            margin-bottom: 20px;
            color: #1a1a1a;
        }

        .about_Xaviers_content p{
            font-size: .9rem;
            color: #555;
            line-height: 1.4;
            text-align: justify;
        }


        @media (max-width:1024px) {
            
            

            .about_xaviers_img img {
                width: 100%;
                max-width: 400px;
            }
        }


        @media (max-width:768px) {
            .about_Xaviers {
                flex-direction: column;
                gap: 20px;
            }

            .about_xaviers_img img {
                width: 100%;
                max-width: 400px;
            }
        }






        .section_container{
            max-width: var(--max-width);
            margin: 2rem auto;
            width: 100%;
            padding: 2rem 0;
        }
        .section_container h2{
            font-size: 2rem;
            margin-bottom: 1.5rem;
            
        }
        .section_container h2 span{
            color: var(--main-color);
        }

  
    .grid_container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    }

    .grid_item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        background: #fff;
        padding: 2rem;
        min-height: 300px;
        border: 1px solid #e0e0e0; 
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
      
    }

    .grid_item:hover {
        transform: translateY(-5px);
        box-shadow: 0 9px 15px rgba(0, 0, 0, 0.503);
    }

    .grid_item svg {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
        fill: var(--main-color);
    }

    .grid_item h3 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
        color: var(--main-color);
        font-family: sans-serif;
    }

    .grid_item p {
        font-size: 0.85rem;
        color: #555;
        line-height: 1.6;
        margin: 0;
    }

    @media (max-width: 768px) {
        .grid_container {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
    }

    @media (max-width: 480px) {
        .section_container {
            padding: 10px;
        }
        .grid_container {
            grid-template-columns: 1fr;
        }
    }
        




    .hero-banner {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        width: 100%;
        min-height: 400px;
        max-width: var(--max-width);
        margin: 0 auto;
    }

    .hero-item {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 3rem;
        color: white;
        background-size: cover;
        background-position: center;
        /* This ensures the content is above the pseudo-element background */
        z-index: 1;
    }

    /* Overlay logic: Darkens the image so text is readable */
    .hero-item::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    /* Box 1 - Gold Overlay */
    .hero-item.box-1 {
        background-image: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?q=80&w=1000');
    }
    .hero-item.box-1::after {
        background: #ec40797b; 
    }

    /* Box 2 - Dark/Natural Overlay */
    .hero-item.box-2 {
        background-image: url('https://images.unsplash.com/photo-1509099836639-18ba1795216d?q=80&w=1000');
    }
    .hero-item.box-2::after {
        background: rgba(0, 0, 0, 0.4);
    }

    /* Box 3 - Green Overlay */
    .hero-item.box-3 {
        background-image: url('https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?q=80&w=1000');
    }
    .hero-item.box-3::after {
        background: #2195f38b;
    }

    .hero-content h2 {
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 2rem;
        line-height: 1.3;
        font-family: sans-serif;
    }

    .btn-donate {
        display: inline-block;
        background-color: white;
        color: #333;
        padding: 12px 35px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.15rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .btn-donate:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.575);
        background-color: #f8f8f8;
    }

    /* Mobile Responsive */
    @media (max-width: 480px) {
        .hero-content h2 {
            font-size: 1.5rem;
        }
        .hero-item {
            padding: 2rem;
        }
    }







    .Xaviers_objective{
        max-width: var(--max-width);
        margin: 2rem auto;
        width: 100%;
        display: flex;
        align-items: center;
        padding: 2rem 0;
    }

    .objective_dets{
        flex: 1;
        padding-right: 2rem;
    }
    .objective_dets h3{
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: var(--main-color);
    }
    .objective_dets p{
        font-size: 1rem;
        line-height: 1.6;
        text-align: justify;
    }

    .objective_img{
        flex: 1;
        display: flex;
        justify-content: center;
    }
    .objective_img img{
        width: 500px;
        height: auto;
        border-radius: 15px;
        transition: transform 0.3s ease-in-out;
    }

    .objective_img img:hover{
        transform: scale(1.05);
    }

    .values_data{
        list-style-type: disc;
        padding-left: 20px;
        margin-top: 1rem;
    }

    .values_data li{
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
        
        line-height: 1.5;
    }

    @media (max-width:1024px) {
        .Xaviers_objective {
            
            text-align: center;
        }
        .objective_dets {
            padding-right: 0;
            margin-bottom: 20px;
        }
        .objective_img img {
            width: 100%;
            max-width: 400px;
        }
    }

    @media (max-width:768px) {
          .Xaviers_objective {
            width: 95%;
            flex-direction: column;
            text-align: center;
        }
        
    

    .values_data li{
        text-align: justify;
    }

        .objective_img img {
            width: 100%;
            max-width: 350px;
        }
    }




    










.society-section {
        padding: 60px 20px;
        background-color: var(--bg-light);
    }

    .society-header {
        max-width: var(--max-width);
        margin: 0 auto 50px;
    }

    .society-header h2 {
        font-size: 2.2rem;
        color: var(--text-dark);
        margin-bottom: 15px;
    }

    .society-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .society-card {
        background: #fff;
        border-radius: 7px;
        overflow: hidden; 
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        border: 1px solid #949494;
    }

    .society-card:hover {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.478);
    }


    .card-img {
        width: 100%;
        height: 200px;
        background-color: #ddd; 
        overflow: hidden;
    }

    .card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover; 
    }

    .card-content {
        padding: 25px;
        border-top: 5px solid var(--primary-green);
    }

    .society-card h3 {
        font-size: 1.3rem;
        color: var(--text-dark);
        margin-bottom: 12px;
    }

    .society-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #555;
        margin: 0;
    }

    /* Blue border for the second row/specific items */
    .border-blue {
        border-top-color: var(--secondary-blue) !important;
    }

    @media (max-width: 768px) {
        .society-grid {
            grid-template-columns: 2fr;
        }
    }
    @media (max-width: 480px) {
        .society-grid {
            grid-template-columns: 1fr;
        }
    }












    /* FAQ Section Styling */
.faq-section {
    padding: 60px 20px;
    background-color: #f4f7f6;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* Hide the checkbox */
.faq-input {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

/* Accordion Logic using CSS only */
.faq-input:checked ~ .faq-answer {
    max-height: 200px; /* Adjust as needed */
}

.faq-input:checked ~ .faq-question i {
    transform: rotate(180deg);
}

.faq-input:checked ~ .faq-question {
    color: var(--main-color);
}


@media (max-width:480px) {
    .faq-title{
        font-size: 1.5rem;
    }
    .faq-question{
        font-size: 1rem;
    }
    .faq-answer p{
        font-size: 0.9rem;
    }
}









    .contact-section {
        width: 100%;
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.contact-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.contact-info, .contact-form {
    flex: 1;
    /* min-width: 300px; */
}

/* Info Side Styling */
.contact-info h2 {
    color: #333;
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-info p {
    color: #666;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 20px;
    color: var(--main-color);
    padding: 12px;
}

.info-item h4 {
    margin-bottom: 5px;
    color: #333;
}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    font-size: 16px;
    transition: 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #007bff;
}

.submit-btn {
    background-color: var(--main-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background-color: var(--bg-color);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        padding: 20px;
    }

    .contact-section {
        padding: 40px 10px;
    }

    

    .info-item {
        align-items: center;
        text-align: center;
        flex-direction: column;
        margin-bottom: 0;
        border-bottom: 1px solid #eee;
    }
}














/* Gallery Grid Setup */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: var(--max-width);
    margin: 2rem auto;
}

.gallery-item {
    position: relative;
    height: 250px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
}
.gallery-title{
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 0;
    margin-bottom: 20px;
    font-size: 2rem;
    color: #000;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img { transform: scale(1.1); }

/* Lightbox Background */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer; /* Indicates you can click outside to close */
}

/* Lightbox Content */
.lightbox-container {
    max-width: 80%;
    max-height: 80%;
    cursor: default; /* Prevents closing when clicking on image */
}

#lightbox-img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    border: 4px solid white;
    border-radius: 5px;
}

/* Buttons Styling */
.close-btn {
    position: absolute;
    top: 20px; right: 30px;
    color: white;
    font-size: 50px;
    cursor: pointer;
    z-index: 10000;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 35px;
    padding: 15px;
    cursor: pointer;
    position: absolute;
    transition: 0.3s;
}

.nav-btn:hover { background: rgba(255, 255, 255, 0.3); }
.prev { left: 20px; }
.next { right: 20px; }

/* Responsive adjustments for Mobile */
@media (max-width: 768px) {
    .gallery-grid{
        padding: 10px;

    }
    .nav-btn { font-size: 25px; padding: 10px; }
    .close-btn { top: 10px; right: 20px; font-size: 40px; }
    .lightbox-container { max-width: 95%; }
}












.about_section-1{
    max-width: var(--max-width);
    margin: 2rem auto;
    width: 100%;
    padding: 40px 20px;
}
.about_content{
    width: 100%;
    margin-top: 20px;
}
.about_content p{
    text-align: justify;
    font-size: 1rem;
    line-height: 1.6;
    color: #242424;
}

.about_content h2{
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--main-color);
    
}

.vision-mission {
    padding: 60px 20px;
    
    font-family: 'Segoe UI', sans-serif;
}

.containere1 {
    max-width: 1100px;
    margin: 0 auto;
}











/* Vision Box Styling */
.vision-box {
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 50px;
    border-top: 5px solid var(--main-color);
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.section-title i {
    font-size: 30px;
    color: var(--bg-color);
}

.section-title h2 {
    font-size: 32px;
    color: var(--main-color);
}

.vision-box p {
    font-size: 18px;
    line-height: 1.8;
    
    max-width: 900px;
    margin: 0 auto;
}

/* Mission Grid Styling */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.mission-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-color: var(--main-color);
}

.mission-card i {
    font-size: 40px;
    color: var(--bg-color);
    margin-bottom: 15px;
}

.mission-card p {
    font-size: 16px;
    
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title h2 { font-size: 26px; }
    .vision-box p { font-size: 16px; }
}





.Gcontainer{
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.605);
    border-radius: 10px;
    max-width: 1300px;
    margin: 2rem auto;
    padding: 30px;
}


.Gitem_border {
    border: 1px solid #424242;
    overflow: hidden;
    height: 350px;
}




.about_list{
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 1rem;
}
.about_list li{
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #242424;
}
















