 h1, h2, h3 {
            margin: 0;
            padding: 10px 0;
        }
        .container {
            width: 85%;
            margin: 0 auto;
            padding: 30px;
        }

        /* Header section */
        header h1 {
            font-size: 36px;
            letter-spacing: 1.5px;
        }

        /* Hero section */
        .dealer-hero {
            background-image: url('/images/fwwebb/promotions/store.gif');
            background-size:cover;
            background-position: center;
            color: white;
            padding: 0;
            text-align: center;
            position: relative;
			margin: -15px;
        }

        .dealer-hero-overlay {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 20px 20px;
        }

        .dealer-hero h2 {
            font-size: 48px;
            margin-bottom: 5px;
        }

        .dealer-hero p {
            font-size: 18px;
            margin-bottom: 20px;
        }

        /* Program benefits section */
        .benefits {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 40px;
        }

        .benefit-item {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            width: 48%;
            padding: 20px;
            margin-bottom: 20px;
        }

        .benefit-item h3 {
            font-size: 24px;
        }
        .qualify-item {
            padding: 20px;
        }
        /* Call to action */
	    .cta {
            text-align: center;
            margin: 20px;
        }
        .cta-featured {
            text-align: center;
            margin: 20px;
        }
	  	.cta-smaller {
            text-align: center;
            margin: 30px 30px;
        }
        /* Responsive design */
        @media (max-width: 768px) {
            .benefit-item {
                width: 100%;
            }
            .dealer-hero h2 {
                font-size: 32px;
            }
            .dealer-hero p {
                font-size: 16px;
            }
        }