body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #2c3e50;
}

.section-header p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.about-container {
    background: linear-gradient(135deg, #ffffff, #f1f3f5); /* Light gray gradient */
    padding: 60px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.about-extra {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb); /* Green-themed gradient */
    padding: 60px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.image-container:hover img {
    transform: scale(1.05);
}

h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50; /* Dark blue for contrast */
}

p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* icons */
.icon-list {
    list-style: none;
    padding-left: 0;
}

.icon-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.icon-list i {
    margin-right: 10px;
    color: #007bff; /* Blue color for icons */
    font-size: 18px;
}

.icon-list strong {
    color: #2c3e50; /* Dark blue for text */
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .about-container, .about-extra {
        padding: 40px 20px;
    }

    h3 {
        font-size: 24px;
    }

    p {
        font-size: 14px;
    }

    .image-container {
        margin-bottom: 20px;
    }
}