/* About Section Styling */

.about-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #222;
    line-height: 1.6;
    background: #fefefe;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
}


/* Main Heading */

.about-section h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #004a99;
    text-align: center;
    font-weight: 700;
}


/* Sub Headings */

.about-section h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #0073e6;
    border-bottom: 3px solid #0073e6;
    padding-bottom: 5px;
}


/* Paragraphs */

.about-section p {
    font-size: 1.1rem;
    margin-bottom: 18px;
}


/* Strong text emphasis */

.about-section strong {
    color: #0056b3;
}


/* Unordered List */

.about-section ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.about-section ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}


/* Responsive */

@media (max-width: 600px) {
    .about-section {
        margin: 20px 15px;
        padding: 15px;
    }
    .about-section h1 {
        font-size: 2rem;
    }
    .about-section h2 {
        font-size: 1.5rem;
    }
}


/* Contact Info Styling */

.about-section h2:last-of-type {
    margin-top: 40px;
}

.about-section p a {
    color: #0073e6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.about-section p a:hover,
.about-section p a:focus {
    color: #004a99;
    text-decoration: underline;
    outline: none;
}