                    .container-routes {
                        max-width: 1400px;
                        margin: 0 auto;
                        padding: 40px 20px;
                    }

                    h2 {
                        font-size: 36px;
                        font-weight: bold;
                        text-align: center;
                        margin-bottom: 30px;
                    }

                    .subheading {
                        font-size: 28px;
                        font-weight: 600;
                        margin-bottom: 15px;
                    }

                    .subheading-container {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        margin-bottom: 40px;
                        margin-top: 20px;
                    }

                    .see-all-btn {
                        color: #D4AF37;
                        text-decoration: none;
                        font-size: 18px;
                        font-weight: 600;
                        transition: color 0.3s ease;
                    }

                    .see-all-btn:hover {
                        color: #000;
                    }

                     Section styles 
                    .section {
                        margin-top: 40px;
                    }

                    .card-container {
                        display: flex;
                        flex-wrap: wrap;
                        justify-content: space-between;
                        gap: 10px;
                        margin-top: 20px;
                        align-items: center;
                    }
                    .brandimgs {
                        padding-right: 30px;
                        border-right: 1px solid #ebebeb;
                    }

                    .card {
                        background-color: #fff;
                        border-radius: 10px;
                        width: 24%;
                        transition: transform 0.3s ease, box-shadow 0.3s ease;
                        overflow: hidden;
                        text-decoration: none;
                        color: inherit;
                    }

                    .card:hover {
                        transform: translateY(-10px);
                        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
                    }

                    .card img {
                        width: 100%;
                        height: 100px;
                        object-fit: cover;
                        border-radius: 10px 10px 0 0;
                        transition: transform 0.3s ease;
                    }

                    .card:hover img {
                        transform: scale(1.1);
                    }

                    .card-info {
                        padding: 15px;
                    }

                    .card-title {
                        font-size: 20px;
                         font-weight: bold; 
                        color: #2c3e50;
                        margin-bottom: 10px;
                    }

                    .card-description {
                        font-size: 14px;
                        color: #7f8c8d;
                    }

                     Button styles 
                    .button {
                        background-color: #3498db;
                        color: #fff;
                        padding: 12px 24px;
                        border: none;
                        border-radius: 50px;
                        cursor: pointer;
                        font-size: 16px;
                        text-align: center;
                        text-decoration: none;
                        transition: background-color 0.3s ease;
                    }

                    .button:hover {
                        background-color: #2980b9;
                    }

                     Layout improvements 
                    @media screen and (max-width: 992px) {
                         .card {
                            width: 32%;
                        }
                    }
                    @media screen and (max-width: 769px) {
                        .card-container {
                            flex-direction: column;
                            align-items: center;
                        }
                        .card {
                            width: 100%;
                        }

                        .see-all-btn {
                            font-size: 16px;
                        }

                        h2 {
                            font-size: 30px;
                        }

                        .subheading {
                            font-size: 24px;
                        }
                    }