.main {
    width: 100%; /* Adjusts the width */
    max-width: 1100px; /* Maximum width */
    margin: 5px auto; /* Centers the section and provides spacing from the header/footer */
    padding: 10px;
    background: white; /* Background color for content area */
    border: 1px solid #ccc; /* Light grey border */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Subtle shadow for 3D effect */
    overflow-y: auto; /* Allows scrolling within the container */
}

.container1 {
    padding: 20px;
    border: 1px solid #ddd; /* Lighter border for inner container */
    height: 600px; /* Fixed height for demonstration */
    overflow-y: auto; /* Enable vertical scrolling */
    background-color: #fff; /* White background for the content */
    box-shadow: 0 4px 8px rgba(0,0,0,0.05); /* Softer shadow for inner container */
}
.container1 {
    min-height: 100px; /* Minimum height */
    height: auto; /* Height adjusts to content */
    max-height: 600px; /* Optional: max height before scrolling starts vertically */
}
.container1 p {
    white-space: normal; /* Ensures text does not overflow and wraps normally */
    word-wrap: break-word; /* Breaks long words onto the next line if necessary */
    overflow-wrap: break-word; /* Alternative to word-wrap, with similar functionality */
}

