.x-car-page {
    font-family: 'Arial', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
    line-height: 1.6;
    background: #f5f5f9;
}
.x-car-page header {
    text-align: center;
    margin-bottom: 30px;
}
.x-car-page .logo {
    max-width: 200px;
    margin-bottom: 15px;
}
.x-car-page .benefits {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}
.x-car-page .benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.x-car-page .benefit-icon {
    color: #8a2be2;
    font-size: 24px;
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
}
.x-car-page .form-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}
.x-car-page input, select {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border 0.3s;
}
.x-car-page input:focus, select:focus {
    border-color: #8a2be2;
    outline: none;
}
.x-car-page .checkbox-container {
    display: flex;
    align-items: center;
    margin: 15px 0;
}
.x-car-page .checkbox-container input {
    width: auto;
    margin-right: 10px;
}
.x-car-page button {
    background: #8a2be2;
    color: white;
    border: none;
    padding: 16px;
    width: 100%;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: bold;
    transition: background 0.3s;
}
.x-car-page button:hover {
    background: #7b1fa2;
}
.x-car-page .success-message {
    display: none;
    color: #2e7d32;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: #e8f5e9;
    border-radius: 8px;
}
.x-car-page .stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin: 30px 0;
}
.x-car-page .stat-item {
    padding: 15px;
}
.x-car-page .stat-number {
    font-size: 28px;
    font-weight: bold;
    color: #8a2be2;
}
.x-car-page .testimonial {
    background: #f3e5f5;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    position: relative;
}