.africa-hero {
    background: #f4f4f4;
    padding: 100px 20px;
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.breadcrumb {
    text-align: left;
    font-size: 14px;
    margin-bottom: 60px;
    color: #444;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #1d1d1d;
}

.intro-text {
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 30px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 40px;
    }

    .intro-text {
        font-size: 16px;
    }
}
.africa-packages {
    background: #f4f4f4;
    padding: 80px 20px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.package-card {
    background: #e9e9e9;
    padding: 30px;
    text-align: center;
}

.image-frame {
    background: #dcdcdc;
    padding: 20px;
    margin-bottom: 25px;
}

.image-frame img {
    width: 100%;
    display: block;
}

.package-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 15px;
}

.gold-divider {
    width: 50px;
    height: 3px;
    background: #c6a24a;
    margin: 15px auto 25px;
}

.package-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.explore-btn {
    display: inline-block;
    background: #c6a24a;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}