.about-two-column {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 80px;
}

.about-left {
    flex: 1;
}

.about-right {
    flex: 1;
    text-align: right;
}

.about-right img {
    width: 100%;
    max-width: 550px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0px 10px 40px rgba(0,0,0,0.1);
}

.title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
}

.desc {
    font-size: 18px;
    color: #555;
    margin-top: 20px;
    max-width: 600px;
}

.tag {
    font-size: 18px;
    color: #0b5b63;
    font-weight: 600;
}

/* ⭐ Responsive for Phones/Tablets */
@media (max-width: 992px) {
    .about-two-column {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .about-right img {
        margin-top: 20px;
        max-width: 90%;
    }
}






.info-grid-section {
    padding: 60px 20px;
    background: #fafafa;
}

.info-main-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #062b63;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Cards */
.info-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    transition: 0.3s ease;
    border-left: 4px solid #ff7a00;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.info-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0b5b63;
    margin-bottom: 12px;
}

.info-card p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

/* Footer text */
.info-footer {
    text-align: center;
    margin-top: 30px;
    font-size: 18px;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-main-title {
        font-size: 28px;
    }
}
