* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000;
    font-family: Arial, sans-serif;
    color: #fff;
}


.erewards-main-wrapper {
    font-family: 'Georgia', serif;
    background-color: #1a1410;
    color: #ffffff;
    min-height: 100vh;
}


/* Hero Section */
.erewards-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%231a1410" width="1200" height="800"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 100px 0 150px;
    position: relative;
    overflow: hidden;
}

.erewards-hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to top, #1a1410 0%, transparent 100%);
}

.erewards-search-wrapper {
    max-width: 600px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}

.erewards-search-container {
    display: flex;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.erewards-search-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 14px;
    outline: none;
}

.erewards-search-btn {
    background-color: #f4c430;
    border: none;
    padding: 15px 30px;
    color: #1a1410;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.erewards-search-btn:hover {
    background-color: #e0b020;
}

.erewards-hero-title {
    text-align: center;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.erewards-highlight {
    color: #f4c430;
    font-weight: 600;
}

.erewards-hero-subtitle {
    text-align: center;
    font-size: 18px;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.erewards-cta-buttons {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.erewards-primary-btn {
    background-color: #f4c430;
    color: #1a1410;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    margin: 0 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.erewards-primary-btn:hover {
    background-color: #e0b020;
    color: #1a1410;
}

.erewards-secondary-btn {
    background-color: transparent;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #ffffff;
    margin: 0 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.erewards-secondary-btn:hover {
    background-color: #ffffff;
    color: #1a1410;
}

.erewards-tagline {
    text-align: center;
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 50px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* Stats Section */
.erewards-stats-section {
    background-color: #1a1410;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.erewards-stat-item {
    text-align: center;
    padding: 20px;
}

.erewards-stat-icon {
    font-size: 24px;
    margin-bottom: 15px;
    color: #f4c430;
}

.erewards-stat-number {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.erewards-stat-label {
    font-size: 14px;
    color: #cccccc;
}

/* Silhouette decorative elements */
.erewards-silhouette-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    pointer-events: none;
    z-index: 1;
}

.erewards-silhouette {
    position: absolute;
    bottom: 0;
    width: 150px;
    height: 200px;
    background: rgba(0, 0, 0, 0.8);
    clip-path: polygon(30% 100%, 50% 70%, 40% 60%, 45% 40%, 50% 35%, 55% 40%, 60% 60%, 50% 70%, 70% 100%);
}

.erewards-silhouette:nth-child(1) {
    left: 5%;
    height: 180px;
}

.erewards-silhouette:nth-child(2) {
    left: 20%;
    height: 220px;
}

.erewards-silhouette:nth-child(3) {
    right: 20%;
    height: 190px;
}

.erewards-silhouette:nth-child(4) {
    right: 5%;
    height: 210px;
}

/* Responsive */
@media (max-width: 768px) {
    .erewards-hero-title {
        font-size: 36px;
    }

    .erewards-hero-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }

    .erewards-primary-btn,
    .erewards-secondary-btn {
        display: block;
        margin: 10px auto;
        max-width: 250px;
    }

    .erewards-nav-link {
        margin: 10px 0;
    }

    .erewards-search-container {
        flex-direction: column;
    }

    .erewards-search-btn {
        width: 100%;
    }

    .erewards-stat-item {
        margin-bottom: 30px;
    }

    .erewards-silhouette {
        width: 80px;
        height: 120px;
    }
}

@media (max-width: 576px) {
    .erewards-hero-title {
        font-size: 28px;
    }

    .erewards-stat-number {
        font-size: 24px;
    }
}

/*--------------------------------------------------
               about wrapper
---------------------------------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.erewards-about-wrapper {
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.erewards-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.erewards-about-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Image Section */
.erewards-about-image-col {
    flex: 0 0 45%;
}

.erewards-about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.erewards-about-image {
    width: 100%;
    height: auto;
    border-radius: 50% 50% 0 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    display: block;
}

/* Content Section */
.erewards-about-content-col {
    flex: 1;
}

.erewards-about-heading {
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 30px;
    font-family: 'Georgia', serif;
    line-height: 1.2;
}

.erewards-about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 35px;
    max-width: 500px;
}

.erewards-about-read-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.erewards-about-read-more:hover {
    color: #f4c430;
    border-bottom: 1px solid #f4c430;
}

.erewards-about-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.erewards-about-read-more:hover .erewards-about-arrow {
    transform: translateX(5px);
}

.erewards-about-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .erewards-about-row {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .erewards-about-image-col {
        flex: 0 0 100%;
        display: flex;
        justify-content: center;
    }

    .erewards-about-image-wrapper {
        max-width: 350px;
    }

    .erewards-about-content-col {
        flex: 0 0 100%;
    }

    .erewards-about-heading {
        font-size: 48px;
    }

    .erewards-about-description {
        margin-left: auto;
        margin-right: auto;
    }

    .erewards-about-read-more {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .erewards-about-wrapper {
        padding: 60px 0;
    }

    .erewards-about-heading {
        font-size: 40px;
        margin-bottom: 25px;
    }

    .erewards-about-image-wrapper {
        max-width: 300px;
    }

    .erewards-about-description {
        font-size: 15px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .erewards-about-heading {
        font-size: 36px;
    }

    .erewards-about-image-wrapper {
        max-width: 280px;
    }

    .erewards-about-row {
        gap: 40px;
    }
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.erewards-gallery-wrapper {
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
}

.erewards-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.erewards-gallery-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Content Section */
.erewards-gallery-content-col {
    flex: 0 0 40%;
}

.erewards-gallery-heading {
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 25px;
    font-family: 'Georgia', serif;
    line-height: 1.2;
}

.erewards-gallery-description {
    font-size: 15px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 35px;
    max-width: 380px;
}

.erewards-gallery-read-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.erewards-gallery-read-more:hover {
    color: #f4c430;
    border-bottom: 1px solid #f4c430;
}

.erewards-gallery-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.erewards-gallery-read-more:hover .erewards-gallery-arrow {
    transform: translateX(5px);
}

.erewards-gallery-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Image Gallery Section */
.erewards-gallery-images-col {
    flex: 1;
    position: relative;
}

.erewards-gallery-capsules {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.erewards-gallery-capsule {
    width: 140px;
    height: 320px;
    border-radius: 70px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.erewards-gallery-capsule:hover {
    transform: translateY(-10px);
}

.erewards-gallery-capsule img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Different heights for visual interest */
.erewards-gallery-capsule:nth-child(1) {
    margin-top: 40px;
}

.erewards-gallery-capsule:nth-child(2) {
    margin-top: -20px;
}

.erewards-gallery-capsule:nth-child(3) {
    margin-top: 30px;
}

.erewards-gallery-capsule:nth-child(4) {
    margin-top: -10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .erewards-gallery-row {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }

    .erewards-gallery-content-col {
        flex: 0 0 100%;
    }

    .erewards-gallery-images-col {
        flex: 0 0 100%;
    }

    .erewards-gallery-heading {
        font-size: 48px;
    }

    .erewards-gallery-description {
        margin-left: auto;
        margin-right: auto;
    }

    .erewards-gallery-read-more {
        justify-content: center;
    }

    .erewards-gallery-capsule {
        width: 120px;
        height: 280px;
        border-radius: 60px;
    }
}

@media (max-width: 768px) {
    .erewards-gallery-wrapper {
        padding: 60px 0;
    }

    .erewards-gallery-heading {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .erewards-gallery-description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .erewards-gallery-capsules {
        gap: 12px;
    }

    .erewards-gallery-capsule {
        width: 100px;
        height: 240px;
        border-radius: 50px;
    }
}

@media (max-width: 576px) {
    .erewards-gallery-heading {
        font-size: 36px;
    }

    .erewards-gallery-capsules {
        gap: 10px;
        flex-wrap: wrap;
    }

    .erewards-gallery-capsule {
        width: 90px;
        height: 210px;
        border-radius: 45px;
    }

    .erewards-gallery-capsule:nth-child(1),
    .erewards-gallery-capsule:nth-child(2),
    .erewards-gallery-capsule:nth-child(3),
    .erewards-gallery-capsule:nth-child(4) {
        margin-top: 0;
    }
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.erewards-hiw-wrapper {
    background-color: #000000;
    color: #ffffff;
    padding: 80px 0 100px;
}

.erewards-hiw-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.erewards-hiw-title {
    text-align: center;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 70px;
    font-family: 'Georgia', serif;
}

.erewards-hiw-steps-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.erewards-hiw-step {
    flex: 1;
    text-align: center;
    max-width: 350px;
}

.erewards-hiw-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.erewards-hiw-icon {
    width: 60px;
    height: 60px;
    fill: #ffffff;
}

.erewards-hiw-step-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 18px;
    font-family: 'Georgia', serif;
}

.erewards-hiw-step-description {
    font-size: 14px;
    line-height: 1.7;
    color: #cccccc;
    max-width: 280px;
    margin: 0 auto;
}

.erewards-hiw-cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.erewards-hiw-cta-button {
    background-color: #f4c430;
    color: #000000;
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.erewards-hiw-cta-button:hover {
    background-color: #e0b020;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 196, 48, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .erewards-hiw-steps-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .erewards-hiw-step {
        flex: 0 0 45%;
        margin-bottom: 40px;
    }

    .erewards-hiw-title {
        font-size: 38px;
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .erewards-hiw-wrapper {
        padding: 60px 0 80px;
    }

    .erewards-hiw-title {
        font-size: 34px;
        margin-bottom: 50px;
    }

    .erewards-hiw-steps-row {
        flex-direction: column;
        gap: 50px;
    }

    .erewards-hiw-step {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .erewards-hiw-step-description {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .erewards-hiw-title {
        font-size: 30px;
    }

    .erewards-hiw-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .erewards-hiw-icon {
        width: 50px;
        height: 50px;
    }

    .erewards-hiw-step-title {
        font-size: 20px;
    }

    .erewards-hiw-step-description {
        font-size: 13px;
    }

    .erewards-hiw-cta-button {
        padding: 12px 35px;
        font-size: 14px;
    }
}


/* ------------------------------------------
erewrd-services-wrapper
--------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.erewards-services-wrapper {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 80px 0 100px;
}

.erewards-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.erewards-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.erewards-services-label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 15px;
    display: block;
}

.erewards-services-title {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    line-height: 1.3;
}

.erewards-services-subtitle {
    font-size: 15px;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.erewards-services-cards-row {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.erewards-services-card {
    flex: 1;
    max-width: 380px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.erewards-services-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.erewards-services-card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.erewards-services-card-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.erewards-services-card-icon svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

.erewards-services-card-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    font-family: 'Georgia', serif;
    line-height: 1.3;
}

.erewards-services-card-description {
    font-size: 13px;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 25px;
}

.erewards-services-card-footer {
    display: flex;
    gap: 15px;
}

.erewards-services-card-btn {
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.erewards-services-btn-primary {
    background-color: #f4c430;
    color: #000000;
}

.erewards-services-btn-primary:hover {
    background-color: #e0b020;
    color: #000000;
    transform: translateY(-2px);
}

.erewards-services-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.erewards-services-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.erewards-services-btn-arrow {
    font-size: 16px;
}

/* Background images for cards */
.erewards-services-card-1 {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=800&h=1000&fit=crop');
}

.erewards-services-card-2 {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?w=800&h=1000&fit=crop');
}

.erewards-services-card-3 {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=1000&fit=crop');
}

/* Responsive Design */
@media (max-width: 992px) {
    .erewards-services-cards-row {
        flex-wrap: wrap;
    }

    .erewards-services-card {
        flex: 0 0 calc(50% - 12.5px);
        max-width: none;
    }

    .erewards-services-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .erewards-services-wrapper {
        padding: 60px 0 80px;
    }

    .erewards-services-title {
        font-size: 36px;
    }

    .erewards-services-subtitle {
        font-size: 14px;
    }

    .erewards-services-cards-row {
        flex-direction: column;
    }

    .erewards-services-card {
        flex: 0 0 100%;
        height: 380px;
    }

    .erewards-services-card-footer {
        flex-direction: column;
    }

    .erewards-services-card-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .erewards-services-title {
        font-size: 30px;
    }

    .erewards-services-card {
        height: 360px;
    }

    .erewards-services-card-content {
        padding: 25px;
    }

    .erewards-services-card-title {
        font-size: 20px;
    }
}


/* video */

.short-videos-section {
    padding: 20px 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.see-all-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.see-all-link:hover {
    color: #ddd;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.video-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 9/16;
}

.video-card.featured {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    aspect-ratio: 1/1;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
}

.video-stats {
    display: flex;
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button i {
    color: #000;
    font-size: 24px;
    margin-left: 4px;
}

.video-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.creator-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.creator-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.creator-name {
    font-size: 12px;
    font-weight: 500;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.action-btn {
    width: 28px;
    height: 28px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.views-count {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* real stories */


        /* Real Stories Section */
        .real-stories-section {
            padding: 60px 20px;
            text-align: center;
        }

        .stories-header-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 15px;
            font-family: 'Georgia', serif;
        }

        .stories-header-subtitle {
            font-size: 15px;
            color: #b0b0b0;
            margin-bottom: 50px;
            font-weight: 300;
        }

        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background-color: #1a1a1a;
            border: 1px solid #2a2a2a;
            border-radius: 8px;
            padding: 30px;
            text-align: left;
        }

        .star-rating {
            color: #fff;
            font-size: 14px;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        .testimonial-text {
            font-size: 14px;
            line-height: 1.6;
            color: #e0e0e0;
            margin-bottom: 25px;
            min-height: 60px;
        }

        .testimonial-author-section {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .author-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-details {
            display: flex;
            flex-direction: column;
        }

        .author-name {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 2px;
        }

        .author-title {
            font-size: 12px;
            color: #888;
            font-weight: 300;
        }



        /* Rewards Section */
        .rewards-section {
            position: relative;
            padding: 130px 20px;
            text-align: center;
            background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1200&h=400&fit=crop');
            background-size: cover;
            background-position: center;
            margin-top: 60px;
        }

        .rewards-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
        }

        .rewards-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }

        .rewards-main-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            font-family: 'Georgia', serif;
        }

        .rewards-subtitle {
            font-size: 15px;
            color: #d0d0d0;
            margin-bottom: 35px;
            font-weight: 300;
        }

        .rewards-buttons-group {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .btn-get-started {
            background-color: #ffc107;
            color: #000;
            border: none;
            padding: 12px 35px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .btn-get-started:hover {
            background-color: #ffb300;
        }

        .btn-learn-more {
            background-color: transparent;
            color: #fff;
            border: 2px solid #fff;
            padding: 10px 35px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-learn-more:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 992px) {
            .testimonials-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .stories-header-title {
                font-size: 32px;
            }

            .rewards-main-title {
                font-size: 36px;
            }
        }


/* Footer Main Section */
.footer-main-section {
    background-color: #0a0a0a;
    padding: 60px 0 40px 0;
    border-bottom: 1px solid #2a2a2a;
}

.footer-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-heading {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-item {
    margin: 0;
}

.footer-link-anchor {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-link-anchor:hover {
    color: #fff;
}

/* Subscribe Section */
.subscribe-column {
    grid-column: span 1;
}

.subscribe-heading {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.subscribe-description {
    font-size: 13px;
    color: #b0b0b0;
    line-height: 1.5;
    margin-bottom: 20px;
}

.subscribe-form-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.email-input-field {
    flex: 1;
    background-color: transparent;
    border: 1px solid #404040;
    color: #fff;
    padding: 10px 15px;
    font-size: 13px;
    border-radius: 4px;
    outline: none;
}

.email-input-field::placeholder {
    color: #666;
}

.email-input-field:focus {
    border-color: #ffc107;
}

.submit-button {
    background-color: #ffc107;
    color: #000;
    border: none;
    padding: 10px 25px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #ffb300;
}

.privacy-notice-text {
    font-size: 11px;
    color: #808080;
    line-height: 1.4;
}

.privacy-link {
    color: #808080;
    text-decoration: underline;
}

.privacy-link:hover {
    color: #b0b0b0;
}

/* Footer Bottom Section */
.footer-bottom-section {
    background-color: #0a0a0a;
    padding: 25px 0;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.copyright-text {
    font-size: 12px;
    color: #808080;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom-link {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
}

.footer-bottom-link:hover {
    color: #fff;
}

/* Social Media Icons */
.social-icons-wrapper {
    display: flex;
    gap: 15px;
}

.social-icon-link {
    width: 32px;
    height: 32px;
    background-color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 14px;
}

.social-icon-link:hover {
    background-color: #2a2a2a;
    color: #ffc107;
}

@media (max-width: 992px) {
    .footer-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-left-content {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .footer-grid-container {
        grid-template-columns: 1fr;
    }

    .subscribe-form-wrapper {
        flex-direction: column;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}