﻿* {
    box-sizing: border-box;
}



.about-section {
    padding: 30px 15px;
}

 
/* Heading */
.about-section h1 {
    text-align: center;
    color: #8b0000;
    font-size: 26px;
    margin-bottom: 20px;
}

    .about-section h1 i {
        margin-right: 8px;
    }

/* Image */
.image-box {
    text-align: center;
    margin: 20px 0;
}

    .image-box img {
        width: 100%;
        max-width: 400px;
        border-radius: 10px;
        border: 3px solid #e2c9a0;
    }

/* Text */
.about-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Info Cards */
.info-card {
    background: #fff7ec;
    padding: 18px;
    margin-top: 20px;
    border-left: 5px solid #a0522d;
    border-radius: 8px;
}

    .info-card h2 {
        margin: 0 0 10px;
        color: #a0522d;
        font-size: 20px;
    }

    .info-card i {
        margin-right: 8px;
    }

/* Closing */
.closing {
    text-align: center;
    font-weight: 600;
    margin-top: 30px;
    color: #444;
}

/* 🔹 Desktop Enhancements */
@media (min-width: 768px) {
    .about-section {
        padding: 60px 20px;
    }

        .about-section h1 {
            font-size: 36px;
        }

        .about-section p {
            font-size: 17px;
        }

    .info-card h2 {
        font-size: 24px;
    }
}
