.about_heading {
    align-items: center;
    text-align: center;
    font-family: "Red Rose";
    font-size: 30px;
    letter-spacing: 0.2cm;
    text-decoration: double underline;


}
.about_heading:hover {
    transform: scale(1.05);
    transition: 600ms;
    color: #002b5b;
}
.about-section {
    padding: 80px 40px;
    background: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
}

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f39c12; /* Gold color matching your review stars */
    display: block;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #0d1b2a; /* Deep maritime navy */
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.about-content p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

/* Value Columns */
.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.pillar h4 {
    color: #0d1b2a;
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.pillar p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #718096;
}

/* Image Presentation */
.about-image-wrapper {
    position: relative;
}

.about-hero-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about_heading {
        font-size: 25px;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-pillars {
        grid-template-columns: 1fr;
    }
    
    .about-image-wrapper {
        order: -1; /* Puts image above text on mobile devices */
    }
}