.hero {
    position: relative;
    min-height: 420px; /* 👈 Banner Height Increase */
    padding: 140px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    background:
        
        url("images/cruis/Celebrity Cruises.jpg")
        center center / cover no-repeat;
}

/* TEXT */

.hero-copy h3 {
    color: #005661;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-copy h3 a {
    color: #005661;
    text-decoration: none;
}

.hero-copy h3 a:hover {
    color: #005661;
}

/* MOBILE */

@media (max-width: 768px) {

    .hero {
        min-height: 320px;
        padding: 110px 20px;
    }

    .hero-copy h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {

    .hero {
        min-height: 260px;
        padding: 90px 15px;
    }

    .hero-copy h3 {
        font-size: 16px;
    }
}

/* =========================
ABOUT / CONTENT SECTION
========================= */

.content-section {
    background: #f6f8ff;
    position: relative;
}

/* LEFT CONTENT */

.about-content {
    padding-right: 20px;
}

.about-tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.about-content h2 {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 18px;
}

/* IMAGE */

.about-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.about-image {
    width: 100%;
    height: 380px; /* 👈 SMALL HEIGHT */
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.about-image-wrap:hover .about-image {
    transform: scale(1.05);
}

/* INFO CARDS */

.info-card {
    background: #fff;
    padding: 35px 28px;
    border-radius: 22px;
    height: 100%;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    border: 1px solid #eef2ff;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.12);
}

.info-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.info-icon i {
    color: #fff;
    font-size: 24px;
}

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
}

.info-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #64748b;
    margin: 0;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .about-content {
        padding-right: 0;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .about-image {
        height: 320px;
    }
}

@media (max-width: 768px) {

    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 14px;
    }

    .about-image {
        height: 260px;
    }

    .info-card {
        padding: 28px 22px;
    }
}   