.austrila-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;
    }
}
/* SECTION BACKGROUND */
.australia-packages {
    background: #f3f3f3;
    padding: 100px 20px;
}

/* GRID LAYOUT */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
}

/* CARD STYLE */
.package-card {
    background: #e6e6e6;
    padding: 35px;
    text-align: center;
}

/* IMAGE FRAME */
.image-frame {
    background: #dcdcdc;
    padding: 25px;
    margin-bottom: 30px;
}

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

/* TITLE */
.package-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #222;
}

/* GOLD DIVIDER */
.gold-divider {
    width: 55px;
    height: 3px;
    background: #c6a24a;
    margin: 15px auto 25px auto;
}

/* PARAGRAPH */
.package-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

/* BUTTON */
.explore-btn {
    display: inline-block;
    background: #c6a24a;
    color: #fff;
    padding: 12px 35px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

.explore-btn:hover {
    background: #b8933d;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* CTA Section */
.cta-section {
    background-color: #f2f2f2;
    padding: 70px 20px;
    border-top: 4px solid #c7a54a;
}

.cta-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* Heading */
.cta-container h2 {
    font-family: 'Georgia', serif;
    font-size: 36px;
    font-weight: 500;
    color: #222;
    line-height: 1.4;
    margin-bottom: 20px;
}

.cta-container h2 em {
    font-style: italic;
}

.cta-container .highlight {
    font-style: italic;
}

/* Paragraph */
.cta-container p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
}

.cta-container p a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

/* Button */
.cta-btn {
    display: inline-block;
    background-color: #c7a54a;
    color: #fff;
    padding: 14px 40px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background-color: #b89333;
}

/* ========================= */
/* Responsive - Tablet */
@media (max-width: 992px) {
    .cta-container h2 {
        font-size: 30px;
    }
}

/* ========================= */
/* Responsive - Mobile 375px */
@media (max-width: 480px) {
    .cta-section {
        padding: 50px 15px;
    }

    .cta-container h2 {
        font-size: 22px;
        line-height: 1.5;
    }

    .cta-container p {
        font-size: 16px;
    }

    .cta-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}