/* Info Section Styling */
.info-section {
    background-color: #f8f8f8;
    color: #000;
    padding: 40px 20px;
    line-height: 1.6;
    max-width: 1200px;  /* Limit the width */
    margin: 0 auto;     /* Center the section */
}

.info-section h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.info-section h2 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    color: #333;
}

.info-section p {
    font-size: 16px;
    margin: 10px 0;
   
}


.info-content.expanded {
    max-height: 100%; /* Allow full content to be shown when expanded */
}

.info-content .more-content {
    max-height: 0; /* Initially hidden */
    overflow: hidden; /* Prevent content overflow */
    transition: max-height 0.5s ease; /* Smooth transition */
}

.info-content.expanded .more-content {
    max-height: 2500px; /* Adjust this value based on content height */
}


@media (max-width: 768px) {
    .info-section h1 {
        font-size: 20px;
    }

    .info-section h2 {
        font-size: 18px;
    }

    .info-section p {
        font-size: 14px;
        padding: 0;  /* Remove padding on smaller screens */
    }
}

.control {
    display: inline-block;
    position: relative;
    padding-left: 19px;
    padding-top: 1px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #333;
    font-weight: 400;
}
