/* Hoyer 3 Reasons Section */
.reasons-section {
    position: relative;
    padding: 80px 0 120px;
    overflow: hidden;
    font-family: 'Verdana', sans-serif;
    /* Hoyer Font */
}

/* Gray Angled Background */
.reasons-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    /* Covers most of the right side */
    height: 100%;
    background: #e6e7e8;
    /* Light Gray */
    transform: skewX(-15deg);
    /* The angle */
    transform-origin: top right;
    z-index: -1;
    border-radius: 0 0 0 50px;
    /* Soften corner if needed */
}

.relative-container {
    position: relative;
    z-index: 1;
}

/* Header with Number */
.reasons-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 50px;
    max-width: 800px;
}

.big-number {
    font-size: 10rem;
    font-weight: 900;
    line-height: 0.8;
    color: var(--primary);
    /* Hoyer Red */
}

.reasons-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary);
    text-transform: none;
    padding-top: 10px;
}

/* Grid Layout */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    /* Space for truck */
}

.reason-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary);
    /* Navy */
    margin-bottom: 12px;
}

.reason-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--secondary);
}

/* Truck Image */
.truck-container {
    margin-top: -60px;
    /* Pull up into grid */
    position: relative;
    z-index: 2;
}

.truck-img {
    max-width: 100%;
    height: auto;
    display: block;
    will-change: transform;
    transform: translateX(-150px);
}
@media (max-width: 900px) {
    .reasons-section::before {
        width: 100%;
        transform: skewX(0);
        border-radius: 0;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reasons-header {
        flex-direction: row;
        align-items: center;
    }

    .big-number {
        font-size: 6rem;
    }

    .reasons-title {
        font-size: 1.8rem;
    }
}
.pricing-section {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.pricing-container {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-title {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.pricing-subtitle {
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 1rem;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-item {
    background: #dd3d4e;
    background: linear-gradient(135deg, #e60028 0%, #c40e1d 100%);
    color: white;
    padding: 20px;
    border-radius: 50px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(230, 0, 40, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pricing-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 0, 40, 0.3);
}

.pricing-amount {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-value {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.95;
}

.pricing-item:last-child {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
}