.our-story-section {
    margin-top: 24px;
    font-family: Arial, sans-serif;
}

.our-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    background: #f8faf7;
    border: 1px solid #e5ebde;
    border-radius: 16px;
    padding: 18px;
}

.our-story-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 430px;
}

.our-story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.our-story-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #a6d64e, #84c225);
    color: #17340a;
    border-radius: 14px;
    padding: 14px 18px;
    min-width: 165px;
    box-shadow: 0 8px 22px rgba(132, 194, 37, 0.28);
}

.our-story-badge strong {
    display: block;
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
}

.our-story-badge span {
    font-size: 18px;
    font-weight: 600;
}

.our-story-quote {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    padding: 22px 20px 18px;
    background: linear-gradient(to top, rgba(22, 22, 22, 0.78), rgba(22, 22, 22, 0.12));
}

.our-story-quote p {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.4;
    font-style: italic;
}

.our-story-quote small {
    font-size: 15px;
    opacity: 0.95;
}

.our-story-content h6 {
    color: #84c225;
    font-size: 13px;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 10px;
}

.our-story-content h2 {
    color: #1f2937;
    font-size: 50px;
    line-height: 1.1;
    margin-bottom: 18px;
    font-weight: 700;
}

.our-story-content h2 span {
    color: #84c225;
}

.our-story-content p {
    color: #4b5563;
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.our-story-content strong {
    color: #1f2937;
}

.our-story-content .highlight-red {
    color: #ff4747;
}

.our-story-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    padding: 12px 26px;
    border-radius: 12px;
    text-decoration: none;
    background: #84c225;
    color: #0f2a06;
    font-size: 19px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.our-story-btn:hover {
    color: #0f2a06;
    text-decoration: none;
    background: #76b51f;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(132, 194, 37, 0.3);
}

@media (max-width: 1200px) {
    .our-story-content h2 {
        font-size: 40px;
    }

    .our-story-content p {
        font-size: 17px;
    }
}

@media (max-width: 991px) {
    .our-story-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .our-story-visual {
        min-height: 360px;
    }

    .our-story-content h2 {
        font-size: 34px;
    }

    .our-story-btn {
        font-size: 17px;
        padding: 11px 22px;
    }
}

@media (max-width: 576px) {
    .our-story-grid {
        padding: 12px;
        border-radius: 12px;
    }

    .our-story-visual {
        min-height: 300px;
        border-radius: 12px;
    }

    .our-story-badge {
        min-width: auto;
        border-radius: 10px;
        padding: 10px 12px;
    }

    .our-story-badge strong {
        font-size: 24px;
    }

    .our-story-badge span {
        font-size: 12px;
    }

    .our-story-quote p {
        font-size: 14px;
    }

    .our-story-quote small {
        font-size: 12px;
    }

    .our-story-content h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .our-story-content p {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .our-story-btn {
        width: 100%;
        justify-content: center;
    }
}
