.main-header {
    background-color: var(--axis-black); 
    color: var(--axis-white);
    padding: 20px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 2px solid var(--axis-blue); 
}
.logo {
    font-size: var(--size-logo);
    font-weight: 900;
    letter-spacing:-1px;
    margin-bottom: 8px;
}

.tagline {
    font-size: 18px;
    color: var(--axis-white);
    font-weight: 500;
}

.row_section {
    display: flex;
    justify-content: center;
    gap: 40px; /* Space between cards */
    padding: 20px;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 80px;
}


.column {
    flex: 1;
    background-color: var(--axis-white);
    border: 2px solid #e5e5e5;
    padding: 40px;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    transition: all 0.3s ease;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.column:hover {
    border-color: var(--axis-black);
    box-shadow: var(--shadow-subtle);
    transform: translateY(-6px);
}


.content h2 {
    font-size: var(--size-h2);
    margin-bottom: 15px;
}

.content p {
    color: var(--axis-black);
    font-size: var(--size-body);
}


.btn-primary {
    background-color: var(--axis-black);
    color: var(--axis-white);
    border: none;
    padding: 16px;
    font-size: var(--size-button);
    font-weight: var(--button-text-weight);
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--axis-gray-dark);
     transform: translateY(-2px);
}

.rider_column {
    background: 
        linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.92)),
        url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSxfSki-qeZBBja9FruZwm2CXv-nEGdCosoUQ&s"); /* Direct JPG link */
    background-size: cover;
    background-position: center;
}

.driver_column {
    background: 
        linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.92)),
        url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS96d4aVEF63awiGwYGcwjUPuYbMwSrLf6Yyw&s"); /* Direct JPG link */
    background-size: cover;
    background-position: center;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .row_section {
        flex-direction: column; /* Stacks the cards vertically */
        gap: 20px;              /* Reduces space between cards */
        margin-top: 30px;       /* Reduces top margin so user doesn't have to scroll as much */
        padding: 15px;
    }

    .column {
        height: auto;           /* Let the height grow with the content */
        min-height: 280px;      /* Keeps a nice size for the background image */
        padding: 30px 20px;     /* Slightly less padding to save screen space */
    }

    .logo {
        font-size: 40px;        /* Shrinks logo slightly so it fits better on small screens */
    }

    .tagline {
        font-size: 16px;
    }
        }
