        body {
            margin: 0;
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url('https://centraldeboletos.com/wp-content/themes/lcmn25/images/portada.png') no-repeat center center/cover;
            text-align: center;
            padding: 100px 20px;
            opacity: 0.8;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #fff;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: white;
        }

        @media (min-width: 768px) {

        .search-bar {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .search-bar input,
        .search-bar button {
            padding: 15px;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
        }

        .search-bar input {
            flex: 1;
            outline: none;
        }

        .search-bar button {
            background-color: #135D77;
            color: white;
            cursor: pointer;
            flex-basis: 100px;
        }

    }

        /* Popular Routes */
        .popular-routes {
            padding: 20px 20px 50px 20px;
            text-align: center;
        }

        .popular-routes h2 {
            margin: 50px;
            font-size: 2rem;
            color: #315D7C;
        }

        .routes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .route {
            background-color: #666;
            background-size: cover;
            padding-top: 175px;
            padding-bottom: 5px;
            border-radius: 25px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            background-blend-mode: overlay;
        }

        .route h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: #fff;
        }

        .route p {
            font-size: 1.2rem;
            color: #fff;
        }

        /* Footer */
        footer {
            background-color: #135D77;
            color: white;
            padding: 20px;
            text-align: center;
        }

        footer a {
            color: #F9629F;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero {
                padding: 10px 20px 100px 20px;
            }
        }

        /* Popular Companies */
.popular-companies {
    text-align: center;
  padding: 5px 20px 5px 20px;
  text-align: center;
  background-color: #f1b553;
}

.popular-companies h2 {
    margin: 50px;
    font-size: 2rem;
    color: #315D7C;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: center;
}

.company {
    padding: 20px;
    text-align: center;
    min-height: 230px;
}

.company img {
    margin-bottom: 15px;
    border-radius: 15%;
    min-height: 150px;
    max-width: 100%;
}

.company h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #000;
}

.company p {
    font-size: 1rem;
    color: #333;
}

.company a, .routes-grid a {
    text-decoration:none;
    cursor: pointer;
}

.travel-with-us {
    padding: 50px 15px;
    max-width: 1000px;
  margin: auto;
}

hr {
    background-color: #135D77;
  height: 4px;
  margin: 30px 10px;
  opacity: 20%;
}

.number-list {
    list-style-type: decimal; /* Other options: disc, circle, decimal, lower-roman, none, etc. */
}

.cdmx {
    background-image: url("https://centraldeboletos.com/wp-content/uploads/2025/06/viajar-a-la-cdmx.jpg");
}

.guadalajara {
    background-image: url("https://centraldeboletos.com/wp-content/uploads/2025/05/Salidas-a-Guadalajara.webp");
}

.merida {
    background-image: url("https://centraldeboletos.com/wp-content/uploads/2025/06/salidas-en-merida.jpg");
}

.veracruz {
    background-image: url("https://centraldeboletos.com/wp-content/uploads/2025/06/Salida-a-Veracruz.jpg");
}

.highlight-price {
    font-weight: 600;
}

        .table-container {
            max-width: 1000px;
            margin: 50px auto;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        thead {
            background-color: #135D77;
            color: white;
        }

        thead th {
            text-align: center;
            padding: 15px;
            font-size: 1rem;
        }

        tbody tr {
            border-bottom: 1px solid #ddd;
            transition: background-color 0.3s;
            cursor: pointer;
            position: relative; /* Enables pseudo element for full-row clickable link */
        }

        tbody tr:hover {
            background-color: #f0f0f0;
        }

        tbody td {
            padding: 15px;
            font-size: 0.9rem;
        }

        tbody td:first-child {
            font-weight: bold;
        }


        tbody tr a {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            text-decoration: none;
            color: inherit;
        }

        .badge {
            display: inline-block;
            padding: 5px 10px;
            background-color: #f1b553; /* Light Formal Pink */
            border-radius: 20px;
            color: white;
            font-size: 0.8rem;
            font-weight: bold;
            margin: 5px;
        }

        @media (max-width: 768px) {
            table {
                font-size: 0.9rem;
            }

            tbody td {
                padding: 10px;
            }
        }

                .center-link {
            text-align: center;
            padding: 20px;
        }

        .center-link a {
            display: inline-block;
            padding: 10px 20px;
            background-color: #f1b553; /* Light Formal Pink */
            color: white;
            border-radius: 25px;
            text-decoration: none;
            font-size: 1rem;
            font-weight: bold;
            transition: background-color 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .center-link a:hover {
            background-color: #d87a9f; /* Slightly darker pink */
        }

        .center-link td {
            text-align: center;
        }