/* Main Content */
.main-content {
    margin: 5% auto; /* Add 5% margin on left and right */
    padding: 20px;
    max-width: 1200px; /* Limit the width for better readability */
    box-sizing: border-box;
}

/* About Page Container */
.about-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Title Styles */
.about-title {
    color: black;
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    word-wrap: break-word;
    margin-bottom: 20px;
}

/* Section Title Styles */
.about-section-title {
    color: black;
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-decoration: underline;
    word-wrap: break-word;
    margin-bottom: 10px;
}

/* Text Styles */
.about-text {
    color: black;
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
    margin-bottom: 20px;
}