* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.info-bar {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f5f5f5;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    position: relative;
    margin-bottom: 30px;
}

h1 {
    text-align: center;
    color: #333;
    font-size: 2rem;
}

/* Language Dropdown Styles */
.language-dropdown {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000;
}

.language-dropdown select {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.9rem;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 120px;
}

.language-dropdown select:hover {
    border-color: #2563eb;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.language-dropdown select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.car-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s ease;
    position: relative;
}

.car-card:hover {
    transform: translateY(-5px);
}

.car-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.car-info {
    padding: 20px;
    position: relative;
}

.car-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.car-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.car-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2563eb;
}

.price-pickup-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.pickup-location {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 0.8rem;
    color: #495057;
    font-weight: 500;
}