/* Stories/What We Do Section */
.stories-section {
    padding: 50px 0px 50px 0px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.stories-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.stories-content-wrapper {
    width: 50%;
    padding-left: 5%;
    /* Adjust for container centering */
    padding-right: 50px;
    z-index: 2;
}

.stories-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    /* Occupy right side + overlap */
    height: 100%;
    z-index: 1;
}

/* Gradient Overlay for Fade Effect */
.stories-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    /* Wider fade area */
    height: 100%;
    background: linear-gradient(to right, #fff 10%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.stories-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.stories-tagline {
    font-size: 14px;
    font-weight: 700;
    color: #666;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.stories-tagline i {
    color: var(--primary-color);
}

.stories-title {
    font-size: 4rem;
    /* Match the massive heavy font in screenshot */
    line-height: 1.05;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.stories-title .green-text {
    color: var(--primary-color);
}

.stories-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Stats */
.stories-stats {
    display: flex;
    gap: 60px;
    /* Increased gap */
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 65px;
    /* Slightly Larger */
    height: 65px;
    background-color: rgba(252, 128, 117, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 28px;
}

.stat-info h3 {
    font-size: 2.5rem;
    /* Bigger numbers */
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-info p {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    margin: 0;
}

.stories-sub-text {
    font-size: 1rem;
    color: #444;
    margin-bottom: 35px;
    max-width: 400px;
    font-weight: 500;
}

/* Button */
.btn-dark {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 16px 40px;
    /* Bigger button */
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.btn-dark i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.btn-dark:hover {
    background-color: #000;
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .stories-section {
        flex-direction: column;
        padding-bottom: 0;
    }

    .stories-image-wrapper {
        position: relative;
        width: 100%;
        height: 400px;
        order: -1;
        /* Image on top for mobile? Or bottom? Screenshot layout usually implies text top on mobile. Let's keep typical stacking */
        order: 2;
    }

    .stories-image-wrapper::after {
        background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0) 50%);
        /* Top fade on mobile */
    }

    .stories-content-wrapper {
        width: 100%;
        padding: 50px 20px;
        order: 1;
    }

    .stories-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .stories-image-wrapper {
        display: none;
    }

    .stories-content-wrapper {
        width: 100%;
        padding: 40px 20px;
    }

    .stories-stats {
        flex-direction: row;
        /* Keep in one row */
        justify-content: flex-start;
        gap: 30px;
    }

    .stat-info h3 {
        font-size: 1.5rem;
        /* Decrease size */
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 20px;
    }

    .stories-title {
        font-size: 2.2rem;
    }
}