/* Hero Section with Image Placeholder */
.hero-banner {
    background-color: #ff0000;
    background-image: linear-gradient(rgba(255, 0, 0, 0.8), rgba(255, 0, 0, 0.8)), url('YOUR-HERO-IMAGE-URL.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-top: 10px;
    font-weight: 300;
}

/* Container */
.page-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Two-Column Story Section */
.story-container {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.text-column {
    flex: 1;
    min-width: 300px;
}

.image-column {
    flex: 1;
    min-width: 300px;
}

.story-image {
    width: 100%;
    height: 400px;
    background-color: #f2f2f2;
    object-fit: cover;
    border-radius: 8px;
    border-left: 10px solid #ff0000;
    background:url("../image/drifting_car.png");
    background-position: center;
    background-size: cover;
}

.section-label {
    color: #ff0000;
    text-transform: uppercase;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.main-heading {
    font-size: 2.5rem;
    margin-top: 0;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    border: 1px solid #eeeeee;
    padding: 30px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #ff0000;
}

.feature-title {
    color: #ff0000;
    font-size: 1.3rem;
    margin-top: 0;
}

/* Sustainability Bar */
.impact-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    margin-top: 50px;
}

.impact-btn {
    background-color: #ff0000;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Utility */
.red-text { color: #ff0000; }