/* styles.css */
.page{
    background-color: #F3F6F9;
}

.content-print{
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    background-color: #ffffff; /* Ensure the container has a white background */
    padding: 10px; /* Padding inside the container for spacing */
}

.dropdown-container {
    width: 100%; /* Doubled the width of the container */
    padding: 20px;
}

.dropdown-section {
    margin-bottom: 10px;
    overflow: hidden;
}

.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px; /* Increased font size for better scaling */
    color: #14213D;
    border-radius: 15px;
    margin-bottom: 10px;
    margin-left: -24px;
}



.dropdown-content {
    background-color: #F3F6F9;
    padding: 20px;
    border-radius: 15px;
}

.dropdown-row {
    display: flex;
    align-items: flex-start;
    padding: 5px; /* Increased padding for larger size */
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 10px;
}

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

.row-icon {
    font-size: 24px; /* Adjusted icon size to match larger container */
    margin-right: 15px;
    color: #555;
}

.row-text {
    display: flex;
    flex-direction: column;
    margin: 10px;
}

.row-text h1 {
    font-size: 18px; /* Adjusted text size for larger display */
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #14213D;
}
.row-text h2 {
    font-size: 16px; /* Adjusted text size for larger display */
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #14213D;
    margin-left: 6px;
}

