/* style/latest-promotions-how-to-claim-use-promotions.css */
.page-latest-promotions-how-to-claim-use-promotions {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-latest-promotions-how-to-claim-use-promotions .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-latest-promotions-how-to-claim-use-promotions .brand-link {
    color: #1A2E4E;
    text-decoration: none;
    font-weight: bold;
}

.page-latest-promotions-how-to-claim-use-promotions .brand-link:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* Hero Section */
.page-latest-promotions-how-to-claim-use-promotions .hero-section {
    background-color: #1A2E4E; /* Main dark blue */
    color: #FFFFFF;
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-latest-promotions-how-to-claim-use-promotions .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title */
    font-weight: 700;
}

.page-latest-promotions-how-to-claim-use-promotions .hero-title .brand-link {
    color: #FFD700;
}

.page-latest-promotions-how-to-claim-use-promotions .hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-latest-promotions-how-to-claim-use-promotions .hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}

/* General Section Styling */
.page-latest-promotions-how-to-claim-use-promotions .introduction-section,
.page-latest-promotions-how-to-claim-use-promotions .promotion-types-section,
.page-latest-promotions-how-to-claim-use-promotions .how-to-claim-section,
.page-latest-promotions-how-to-claim-use-promotions .how-to-use-section,
.page-latest-promotions-how-to-claim-use-promotions .important-tips-section,
.page-latest-promotions-how-to-claim-use-promotions .maximise-benefits-section,
.page-latest-promotions-how-to-claim-use-promotions .call-to-action-section {
    padding: 60px 0;
}

.page-latest-promotions-how-to-claim-use-promotions .introduction-section,
.page-latest-promotions-how-to-claim-use-promotions .maximise-benefits-section {
    background-color: #F9F9F9;
}

.page-latest-promotions-how-to-claim-use-promotions .promotion-types-section,
.page-latest-promotions-how-to-claim-use-promotions .how-to-use-section {
    background-color: #EFEFEF;
}

.page-latest-promotions-how-to-claim-use-promotions .how-to-claim-section,
.page-latest-promotions-how-to-claim-use-promotions .important-tips-section {
    background-color: #FFFFFF;
}

.page-latest-promotions-how-to-claim-use-promotions .section-title {
    font-size: 2.5em;
    color: #1A2E4E;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-latest-promotions-how-to-claim-use-promotions .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-latest-promotions-how-to-claim-use-promotions p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
    text-align: justify;
}

.page-latest-promotions-how-to-claim-use-promotions .text-link {
    color: #1A2E4E;
    font-weight: bold;
    text-decoration: none;
}

.page-latest-promotions-how-to-claim-use-promotions .text-link:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* Promotion Types Grid */
.page-latest-promotions-how-to-claim-use-promotions .promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-latest-promotions-how-to-claim-use-promotions .promo-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-latest-promotions-how-to-claim-use-promotions .promo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-latest-promotions-how-to-claim-use-promotions .promo-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: #FFD700;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-latest-promotions-how-to-claim-use-promotions .promo-item h3 {
    font-size: 1.4em;
    color: #1A2E4E;
    margin-bottom: 15px;
}

.page-latest-promotions-how-to-claim-use-promotions .promo-item p {
    font-size: 1em;
    color: #555;
    text-align: center;
}

/* Steps Grid */
.page-latest-promotions-how-to-claim-use-promotions .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-latest-promotions-how-to-claim-use-promotions .step-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-latest-promotions-how-to-claim-use-promotions .step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: #1A2E4E;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-latest-promotions-how-to-claim-use-promotions .step-item h3 {
    font-size: 1.3em;
    color: #1A2E4E;
    margin-bottom: 15px;
}

.page-latest-promotions-how-to-claim-use-promotions .step-item p {
    font-size: 1em;
    color: #555;
    text-align: center;
}

/* Important Tips List */
.page-latest-promotions-how-to-claim-use-promotions .tip-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-latest-promotions-how-to-claim-use-promotions .tip-list li {
    background-color: #FFFFFF;
    border-left: 5px solid #FFD700;
    margin-bottom: 20px;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    font-size: 1.1em;
    color: #444;
}

.page-latest-promotions-how-to-claim-use-promotions .tip-list li .tip-highlight {
    font-weight: bold;
    color: #1A2E4E;
    display: block;
    margin-bottom: 5px;
}

/* Call to Action */
.page-latest-promotions-how-to-claim-use-promotions .call-to-action-section {
    background-color: #1A2E4E; /* Dark blue background */
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}

.page-latest-promotions-how-to-claim-use-promotions .call-to-action-section .section-title {
    color: #FFD700;
}

.page-latest-promotions-how-to-claim-use-promotions .call-to-action-section .section-title::after {
    background-color: #FFFFFF;
}

.page-latest-promotions-how-to-claim-use-promotions .call-to-action-section p {
    color: #E0E0E0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.page-latest-promotions-how-to-claim-use-promotions .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin: 0 10px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-latest-promotions-how-to-claim-use-promotions .btn.primary-btn {
    background-color: #FFD700;
    color: #1A2E4E;
    border: 2px solid #FFD700;
}

.page-latest-promotions-how-to-claim-use-promotions .btn.primary-btn:hover {
    background-color: #E6C200;
    transform: translateY(-2px);
}

.page-latest-promotions-how-to-claim-use-promotions .btn.secondary-btn {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-latest-promotions-how-to-claim-use-promotions .btn.secondary-btn:hover {
    background-color: #FFD700;
    color: #1A2E4E;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-latest-promotions-how-to-claim-use-promotions .hero-title {
        font-size: 2.5em;
    }
    .page-latest-promotions-how-to-claim-use-promotions .hero-subtitle {
        font-size: 1.2em;
    }
    .page-latest-promotions-how-to-claim-use-promotions .section-title {
        font-size: 2em;
    }
    .page-latest-promotions-how-to-claim-use-promotions .promo-grid,
    .page-latest-promotions-how-to-claim-use-promotions .steps-grid {
        grid-template-columns: 1fr;
    }
    .page-latest-promotions-how-to-claim-use-promotions .promo-item,
    .page-latest-promotions-how-to-claim-use-promotions .step-item {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .page-latest-promotions-how-to-claim-use-promotions .hero-section,
    .page-latest-promotions-how-to-claim-use-promotions .call-to-action-section {
        padding: 60px 0 30px;
    }
    .page-latest-promotions-how-to-claim-use-promotions .section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-latest-promotions-how-to-claim-use-promotions p {
        font-size: 1em;
    }
    .page-latest-promotions-how-to-claim-use-promotions .btn {
        display: block;
        width: calc(100% - 20px);
        margin: 15px auto;
    }
    .page-latest-promotions-how-to-claim-use-promotions .tip-list li {
        font-size: 1em;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-latest-promotions-how-to-claim-use-promotions .hero-title {
        font-size: 2em;
    }
    .page-latest-promotions-how-to-claim-use-promotions .hero-subtitle {
        font-size: 1em;
    }
    .page-latest-promotions-how-to-claim-use-promotions .section-title {
        font-size: 1.5em;
    }
    .page-latest-promotions-how-to-claim-use-promotions .promo-icon,
    .page-latest-promotions-how-to-claim-use-promotions .step-icon {
        width: 60px;
        height: 60px;
    }
}