* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; /* Allow vertical stacking */
    min-height: 100vh;
}

.language-selector {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #333;
}

.language-selector a {
    text-decoration: none;
    color: #007bff;
    margin-left: 1rem;
}

.language-selector a:hover {
    color: #0056b3;
}
/* Style for the current language */
.language-selector .current {
    text-decoration: underline;
    font-weight: bold;
}

.container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    margin-bottom: 1rem;
}

.container h1 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.container h2 {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    color: #28a745;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cta-button {
    margin-top: 1rem;
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

.note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits {
    text-align: left;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #333;
}

.benefits h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.benefits ul {
    margin-left: 1.5rem;
    list-style-type: disc;
}

.benefits li {
    margin-bottom: 0.5rem;
}
.vin-input {
    margin: 1rem 0;
}

.vin-input input {
    padding: 0.5rem;
    width: 70%;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.vin-input button {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    background-color: #28a745;
    color: white;
    cursor: pointer;
}

.vin-input button:hover {
    background-color: #218838;
}

.result {
    margin-top: 1rem;
    font-size: 1rem;
}

.result .cta-button {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    text-decoration: none;
}

.result .cta-button:hover {
    background-color: #0056b3;
}

.loading-btn {
    cursor: not-allowed;
    opacity: 0.7;
    pointer-events: none;
}

.contact-support {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #333;
    text-align: center;
}

.contact-support a {
    text-decoration: none;
    color: #007bff;
}

.contact-support a:hover {
    color: #0056b3;
}

a:not(.cta-button) {
    color: #007bff;
}

a:not(.cta-button):hover {
    color: #0056b3;
}

.flex-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
}

.container-img {
    display: none;
    max-height: 80vh;
    right: 0;
    position: absolute;
}

.container-img img {
    height: 100%;
    width: auto;
}

@media (min-width: 1300px) {
    .container-img {
        display: block;
    }
}

.payment-methods {
    text-align: center;
    margin: 1rem 0 0 0;
    display: flex;
    gap: 0 15px;
    justify-content: center;
}

.payment-icon {
    width: 50px;
}

.disclaimer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem 0 2rem 0;
    font-size: 0.9rem;
    color: #333;
    text-align: center;
    font-style: italic;
    max-width: 500px;
}