body, h1, h2, p {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Verdana;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #004346; 
    padding: 20px;
}
.container {
    text-align: center;
    width: 100%;
    max-width: 900px;
    background-color: #F7F7FF; 
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border-top: 4px solid #00C49A; /* Bright teal as accent */
}
.title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #172A3A; 
}
.subtitle {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: #172A3A; /* Dark blue-gray */
}
.small-subtitle {
    font-size: 1.2rem;
    color: #004346; /* Dark teal */
    margin-top: 10px;
    margin-bottom: 5px;
    text-align: center;
}
.smaller-subtitle {
    font-size: 1rem;
    color: #172A3A; /* Dark blue-gray */
    margin-top: 0;
    margin-bottom: 30px;
    text-align: center;
    font-style: italic;
}
.about-section {
    margin: 30px 0;
    padding: 10px 10px 15px 10px;
    background: rgba(0, 196, 154, 0.1); /* Light teal background */
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    border-left: 5px solid #00C49A; /* Bright teal border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-text {
    flex: 1;
    text-align: center;
    line-height: 1.6;
    font-size: 1.05rem;
    padding: 10px 10px 5px 10px;
    margin-bottom: 10px;
}

.about-text ul {
    display: inline-block;
    text-align: left;
    margin: 10px auto;
    padding-left: 20px;
    width: 80%; 
}

.about-text li {
    margin-bottom: 8px;
    line-height: 1.6;
    position: relative;
    list-style-type: none;
    padding-left: 1em;
}

.about-text li::before {
    content: "•";
    color: #00C49A; /* Bright teal */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}
.about-title {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.2rem;
    color: #172A3A; /* Dark blue-gray */
}
.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00C49A; /* Bright teal border */
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.image-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 30px 0;
}
.image-figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 0 20px 0;
}
.image-link {
    display: inline-block;
}
.image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 2px solid #F7F7FF;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 196, 154, 0.4); /* Teal shadow on hover */
}
.image-description {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #004346; /* Dark teal */
}
.social-icons-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 25px;
}
.social-icons-container .image-link {
    box-shadow: none;
    background: rgba(0, 196, 154, 0.1); /* Light teal background */
    padding: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.social-icons-container .image-link:hover {
    background: rgba(0, 196, 154, 0.3); /* Slightly darker on hover */
}
.social-icons-container .image-link img,
.social-icon {
    width: 40px;
    height: 40px;
    border: none;
    transition: transform 0.3s ease;
}
.social-icons-container .image-link:hover img {
    transform: scale(1.2);
}
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
   
    .image-container {
        flex-direction: column;
        align-items: center;
    }
}