.about-section {
    background-color: #fff;
    text-align: center;
    padding: 0px 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.about-section-container {
    max-width: 1000px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.skills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px 20px;
    padding-bottom: 60px;
    padding-top: 10px;
    background-color: #F0F0F0;
}

.skill {
    background: #283e51;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 250px;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    padding-top: 40px;
    padding-bottom: 40px;
}

.skill h3 {
    font-size: 28px;
    padding-bottom: 10px;
}

.skill:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-section {
        padding: 15px;
    }

    .about-section h2 {
        font-size: 1.8rem;
    }

    .about-section p {
        font-size: 1rem;
    }

    .skill {
        width: 100%;
        max-width: 300px;
    }
}

/* Very small devices (portrait phones) */
@media (max-width: 480px) {
    .about-section h2 {
        font-size: 1.5rem;
    }

    .about-section p {
        font-size: 0.9rem;
    }
}