/* General Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: #f7f7f7;
            color: #333;
            font-size: 16px;
            line-height: 1.6;
        }

        header {
            background-color: #9b111e; /* Deep red color */
            color: #fff;
            text-align: center;
            padding: 3rem 1rem;
        }

        header h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        header p {
            font-size: 1.4rem;
            opacity: 0.8;
        }

        section {
            padding: 2rem 1rem;
            text-align: center;
        }

        .step-section {
            margin: 3rem 0;
        }

        .step-section h2 {
            font-size: 2.5rem;
            color: #222;
            margin-bottom: 1rem;
        }

        .steps {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }

        .step {
            background: #fff;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            width: 28%;
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }

        .step:hover {
            transform: translateY(-10px);
        }

        .step h3 {
            color: #9b111e; /* Deep red color */
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .step p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 1.5rem;
        }

        .garage-info {
            background: #9b111e; /* Deep red color */
            color: #fff;
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem auto;
            max-width: 800px;
        }

        .garage-info h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .contact-form {
            max-width: 900px;
            background-color: #fff;
            padding: 3rem;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            margin: 3rem auto;
        }

        .contact-form h3 {
            font-size: 2.5rem;
            color: #9b111e; /* Deep red color */
            margin-bottom: 2rem;
        }

        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-radius: 5px;
            border: 2px solid #ddd;
            font-size: 1.1rem;
            color: #333;
        }

        .contact-form input[type="submit"] {
            background-color: #9b111e; /* Deep red color */
            border: none;
            color: #fff;
            font-size: 1.3rem;
            padding: 1.5rem;
            cursor: pointer;
            width: 100%;
            transition: background-color 0.3s ease;
        }

        .contact-form input[type="submit"]:hover {
            background-color: #7a0c14; /* Darker deep red on hover */
        }

        footer {
            background-color: #9b111e; /* Deep red color */
            color: #fff;
            text-align: center;
            padding: 2rem 1rem;
        }

        footer a {
            color: #FFD700;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        /* Back to Home Button */
        .back-to-home {
            display: block;
            margin: 2rem auto;
            text-align: center;
            padding: 1rem 2rem;
            background-color: #9b111e;
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 5px;
            width: 200px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .back-to-home:hover {
            background-color: #7a0c14;
            transform: scale(1.05);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .steps {
                flex-direction: column;
                align-items: center;
            }

            .step {
                width: 80%;
            }
        }