/* css/about.css */

.about-section {
    background-color: #a2ddeb;
    padding: 10px 20px;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}

.about-image img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.about-content {
    flex: 1;
    min-width: 250px;
}

.about-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.learn-more-btn {
    display: inline-block;
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #0056b3;
}