.custom-green-section {
    background: linear-gradient(135deg, #28a745, #218838); 
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-green-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.mascot-icon {
    width: 100px;
    height: 100px;
    background: url('../img/logo.png') no-repeat center center;
    background-size: contain;
    margin: 0 auto;
}

.image-wrapper {
    display: inline-block;
    border: 5px solid #0056b3; 
    border-radius: 500px; 
    overflow: hidden; 
    background-color: white; 
}

.image-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: inherit; 
}

.btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}