/* style/promotions-daily-cashback.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Dark Red */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f8f8;
    --bg-dark: #222222;
    --border-color: #e0e0e0;
}

.page-promotions-daily-cashback {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.page-promotions-daily-cashback .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions-daily-cashback .section-title {
    font-size: 36px;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-daily-cashback .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-promotions-daily-cashback h1,
.page-promotions-daily-cashback h2,
.page-promotions-daily-cashback h3 {
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promotions-daily-cashback h1 {
    font-size: 48px;
    text-align: center;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-promotions-daily-cashback h2 {
    font-size: 32px;
    color: var(--secondary-color);
}

.page-promotions-daily-cashback h3 {
    font-size: 24px;
    color: var(--secondary-color);
}

.page-promotions-daily-cashback p {
    margin-bottom: 15px;
    font-size: 16px;
}

.page-promotions-daily-cashback ul {
    list-style: disc inside;
    margin-bottom: 15px;
    padding-left: 20px;
}

.page-promotions-daily-cashback ul li {
    margin-bottom: 8px;
}

.page-promotions-daily-cashback .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: none;
}

.page-promotions-daily-cashback .cta-button:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-cashback .btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
}

.page-promotions-daily-cashback .btn-primary:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-cashback .btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: none;
}

.page-promotions-daily-cashback .btn-secondary:hover {
    background: #e0b800; /* Slightly darker gold */
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.page-promotions-daily-cashback .hero-section {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a00000 50%, var(--primary-color) 100%);
    padding: 80px 0;
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
}

.page-promotions-daily-cashback .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions-daily-cashback .hero-content {
    z-index: 1;
    margin-bottom: 40px;
}

.page-promotions-daily-cashback .hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
}

.page-promotions-daily-cashback .hero-content p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--text-light);
}

.page-promotions-daily-cashback .hero-image {
    width: 100%;
    max-width: 800px;
    margin-top: 30px;
}

.page-promotions-daily-cashback .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

/* Intro Section */
.page-promotions-daily-cashback .intro-section {
    padding: 60px 0;
    background-color: var(--bg-light);
    text-align: center;
}

/* Features Section */
.page-promotions-daily-cashback .features-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-promotions-daily-cashback .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-promotions-daily-cashback .feature-item {
    background-color: var(--bg-light);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions-daily-cashback .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-daily-cashback .feature-item .feature-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions-daily-cashback .feature-item h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-promotions-daily-cashback .feature-item p {
    font-size: 15px;
    color: var(--text-dark);
    flex-grow: 1;
}

/* How It Works Section */
.page-promotions-daily-cashback .how-it-works-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.page-promotions-daily-cashback .content-block {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-promotions-daily-cashback .content-block h3 {
    color: var(--secondary-color);
    margin-top: 0;
}

.page-promotions-daily-cashback .image-full-width {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Process Section */
.page-promotions-daily-cashback .process-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-promotions-daily-cashback .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-daily-cashback .step-item {
    text-align: center;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-daily-cashback .step-item .step-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-promotions-daily-cashback .step-item h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-promotions-daily-cashback .note-block {
    background-color: #fff3cd; /* Light yellow for notes */
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
}

.page-promotions-daily-cashback .note-block h4 {
    color: #856404; /* Darker yellow text */
    margin-top: 0;
    font-size: 20px;
}

.page-promotions-daily-cashback .note-block ul {
    list-style: disc inside;
    padding-left: 0;
    color: #856404;
}

/* Benefits Section */
.page-promotions-daily-cashback .benefits-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.page-promotions-daily-cashback .benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-daily-cashback .benefit-item {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-daily-cashback .benefit-item .benefit-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-promotions-daily-cashback .benefit-item h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Terms Section */
.page-promotions-daily-cashback .terms-section {
    padding: 60px 0;
    background-color: #fff;
}

/* FAQ Section */
.page-promotions-daily-cashback .faq-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.page-promotions-daily-cashback .faq-list {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: #fff;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: var(--secondary-color);
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 15px 25px;
    background: #f9f9f9;
    border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-answer p {
    margin-bottom: 0;
    color: var(--text-dark);
}

/* CTA Bottom Section */
.page-promotions-daily-cashback .cta-bottom-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #a00000 100%);
    color: var(--text-light);
    text-align: center;
}

.page-promotions-daily-cashback .cta-bottom-section h2 {
    color: var(--text-light);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-promotions-daily-cashback .cta-bottom-section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--text-light);
}

.page-promotions-daily-cashback .cta-bottom-section .cta-button {
    background: var(--text-light);
    color: var(--secondary-color);
}

.page-promotions-daily-cashback .cta-bottom-section .cta-button:hover {
    background: var(--secondary-color);
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-daily-cashback .hero-content h1 {
        font-size: 44px;
    }
    .page-promotions-daily-cashback .section-title {
        font-size: 32px;
    }
    .page-promotions-daily-cashback h2 {
        font-size: 28px;
    }
    .page-promotions-daily-cashback h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-cashback .hero-section {
        padding: 60px 0;
    }
    .page-promotions-daily-cashback .hero-content h1 {
        font-size: 36px;
    }
    .page-promotions-daily-cashback .hero-content p {
        font-size: 16px;
    }
    .page-promotions-daily-cashback .cta-button {
        padding: 12px 30px;
        font-size: 18px;
    }
    .page-promotions-daily-cashback .section-title {
        font-size: 28px;
    }
    .page-promotions-daily-cashback h2 {
        font-size: 24px;
    }
    .page-promotions-daily-cashback h3 {
        font-size: 20px;
    }
    .page-promotions-daily-cashback .feature-grid, 
    .page-promotions-daily-cashback .process-steps, 
    .page-promotions-daily-cashback .benefit-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-daily-cashback .feature-item, 
    .page-promotions-daily-cashback .step-item, 
    .page-promotions-daily-cashback .benefit-item {
        padding: 25px;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .faq-question h3 {
        font-size: 16px;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
    .page-promotions-daily-cashback .cta-bottom-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-promotions-daily-cashback .hero-content h1 {
        font-size: 30px;
    }
    .page-promotions-daily-cashback .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .page-promotions-daily-cashback h2 {
        font-size: 20px;
    }
    .page-promotions-daily-cashback h3 {
        font-size: 18px;
    }
    .page-promotions-daily-cashback .cta-button {
        font-size: 16px;
        padding: 10px 25px;
    }
    .page-promotions-daily-cashback .btn-primary, 
    .page-promotions-daily-cashback .btn-secondary {
        font-size: 14px;
        padding: 8px 20px;
    }
    .page-promotions-daily-cashback .hero-image {
        margin-top: 20px;
    }
    .page-promotions-daily-cashback .feature-item .feature-image {
        height: 150px;
    }
}