/* style/promotions-daily-cashback.css */
.page-promotions-daily-cashback {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa; /* Light background for readability */
}

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

.page-promotions-daily-cashback .hero-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue gradient for hero */
    color: #ffffff; /* White text for contrast */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-daily-cashback .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffc107; /* Accent color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-cashback .hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.page-promotions-daily-cashback .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    margin: 10px;
}

.page-promotions-daily-cashback .btn-primary {
    background-color: #ffc107; /* Yellow accent for primary actions */
    color: #0056b3; /* Dark blue text for contrast */
    border: none;
}

.page-promotions-daily-cashback .btn-primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-promotions-daily-cashback .btn-secondary {
    background-color: #007bff; /* Primary blue for secondary actions */
    color: #ffffff; /* White text for contrast */
    border: 1px solid #0056b3;
}

.page-promotions-daily-cashback .btn-secondary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-promotions-daily-cashback .btn-lg {
    padding: 15px 30px;
    font-size: 1.2em;
}

.page-promotions-daily-cashback .content-section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.page-promotions-daily-cashback .content-section:nth-of-type(even) {
    background-color: #f0f8ff; /* Light blue tint for alternating sections */
}

.page-promotions-daily-cashback .section-title {
    font-size: 2.5em;
    color: #007bff; /* Primary blue for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-daily-cashback .section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -20px auto 40px;
    color: #555;
}

.page-promotions-daily-cashback .content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-promotions-daily-cashback .content-wrapper.reverse-order {
    flex-direction: row-reverse;
}

.page-promotions-daily-cashback .text-content {
    flex: 1;
}

.page-promotions-daily-cashback .image-content {
    flex: 1;
    text-align: center;
}

.page-promotions-daily-cashback .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-daily-cashback .text-content p {
    margin-bottom: 20px;
    font-size: 1.05em;
    color: #444;
}

.page-promotions-daily-cashback .highlight {
    color: #007bff;
    font-weight: bold;
}

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

.page-promotions-daily-cashback .method-card {
    background-color: #f0f8ff;
    border: 1px solid #d0e0f0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-promotions-daily-cashback .method-card:hover {
    transform: translateY(-5px);
}

.page-promotions-daily-cashback .method-card h3 {
    color: #007bff;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-promotions-daily-cashback .method-card p {
    color: #555;
    font-size: 1em;
}

.page-promotions-daily-cashback .method-card .formula {
    font-weight: bold;
    color: #0056b3;
    margin: 15px 0;
    font-size: 1.1em;
}

.page-promotions-daily-cashback .method-card .small-img {
    max-width: 80%;
    margin-top: 20px;
}

.page-promotions-daily-cashback .table-responsive {
    overflow-x: auto;
    margin-top: 30px;
}

.page-promotions-daily-cashback table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.page-promotions-daily-cashback table th,
.page-promotions-daily-cashback table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.page-promotions-daily-cashback table th {
    background-color: #007bff;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.95em;
}

.page-promotions-daily-cashback table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.page-promotions-daily-cashback table tbody tr:hover {
    background-color: #e6f7ff;
}

.page-promotions-daily-cashback table td a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-daily-cashback table td a:hover {
    text-decoration: underline;
}

.page-promotions-daily-cashback .note {
    font-style: italic;
    color: #777;
    text-align: center;
    margin-top: 20px;
    font-size: 0.95em;
}

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

.page-promotions-daily-cashback .step-card {
    background-color: #fff;
    border: 1px solid #d0e0f0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-top: 70px; /* Space for icon */
}

.page-promotions-daily-cashback .step-icon {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffc107; /* Accent color for icons */
    color: #0056b3; /* Dark blue text for contrast */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-cashback .step-card h3 {
    color: #007bff;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-promotions-daily-cashback .step-card p {
    color: #555;
    font-size: 1em;
}

.page-promotions-daily-cashback .terms-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 900px;
}

.page-promotions-daily-cashback .terms-list li {
    background-color: #f0f8ff;
    border-left: 5px solid #007bff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: #333;
    font-size: 1.05em;
}

.page-promotions-daily-cashback .terms-list li strong {
    color: #0056b3;
}

.page-promotions-daily-cashback .benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 900px;
}

.page-promotions-daily-cashback .benefits-list li {
    background-color: #f0f8ff;
    border-left: 5px solid #ffc107;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: #333;
    font-size: 1.05em;
}

.page-promotions-daily-cashback .benefits-list li strong {
    color: #e0a800;
}

.page-promotions-daily-cashback .faq-items {
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-daily-cashback .faq-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-promotions-daily-cashback .faq-item h3 {
    color: #007bff;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-promotions-daily-cashback .faq-item p {
    color: #555;
    font-size: 1em;
}

.page-promotions-daily-cashback .cta-section {
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%); /* Darker blue gradient for CTA */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-promotions-daily-cashback .cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffc107; /* Accent color for CTA title */
}

.page-promotions-daily-cashback .cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.page-promotions-daily-cashback .cta-buttons .btn {
    margin: 0 15px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-daily-cashback .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .page-promotions-daily-cashback .content-wrapper.reverse-order {
        flex-direction: column;
    }

    .page-promotions-daily-cashback .hero-title {
        font-size: 2.5em;
    }

    .page-promotions-daily-cashback .section-title {
        font-size: 2em;
    }

    .page-promotions-daily-cashback .cta-title {
        font-size: 2.2em;
    }

    .page-promotions-daily-cashback .btn-lg {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-cashback .hero-section,
    .page-promotions-daily-cashback .cta-section {
        padding: 60px 0;
    }

    .page-promotions-daily-cashback .content-section {
        padding: 40px 0;
    }

    .page-promotions-daily-cashback .hero-title {
        font-size: 2em;
    }

    .page-promotions-daily-cashback .hero-subtitle,
    .page-promotions-daily-cashback .cta-description {
        font-size: 1em;
    }

    .page-promotions-daily-cashback .section-title {
        font-size: 1.8em;
    }

    .page-promotions-daily-cashback .method-card,
    .page-promotions-daily-cashback .step-card {
        padding: 25px;
        padding-top: 60px;
    }

    .page-promotions-daily-cashback .step-icon {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
        top: 15px;
    }

    .page-promotions-daily-cashback .cta-title {
        font-size: 1.8em;
    }

    .page-promotions-daily-cashback .cta-buttons {
        flex-direction: column;
    }

    .page-promotions-daily-cashback .cta-buttons .btn {
        margin: 10px 0;
    }
}

@media (max-width: 576px) {
    .page-promotions-daily-cashback .hero-title {
        font-size: 1.8em;
    }

    .page-promotions-daily-cashback .section-title {
        font-size: 1.6em;
    }

    .page-promotions-daily-cashback .method-card h3,
    .page-promotions-daily-cashback .step-card h3 {
        font-size: 1.5em;
    }

    .page-promotions-daily-cashback .btn {
        width: 100%;
        box-sizing: border-box;
    }

    .page-promotions-daily-cashback .table-responsive {
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
    }

    .page-promotions-daily-cashback table th,
    .page-promotions-daily-cashback table td {
        padding: 10px;
        font-size: 0.9em;
    }
}