/* Basic Reset */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    text-align: center;
}

header {
    background-color: #000;
    color: #fff;
    padding: 30px 0; /* Increased padding */
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.8em;
    margin-bottom: 5px;
}

header h2 {
    font-size: 1.5em;
    font-weight: 300;
    color: #b3b3b3;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NEW: Advantages Section Styling */
.advantages-section {
    text-align: left;
    padding: 20px;
    margin-bottom: 30px;
}

.advantages-section h3 {
    text-align: center;
    color: #000;
    font-size: 1.8em;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.advantages-section ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.advantages-section li {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    width: 48%; /* Two items per row on wide screens */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

@media (max-width: 600px) {
    .advantages-section li {
        width: 100%; /* Full width on mobile */
    }
}

/* CTA Section Styling */
.cta-section {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 40px;
}

.cta-section h2 {
    color: #06b746; /* Uber Green */
    font-size: 2.2em;
}

/* Form Input Styling */
#driver-email {
    width: 70%;
    padding: 15px;
    margin: 15px 0;
    font-size: 1.1em;
    border: 2px solid #ccc;
    border-radius: 5px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* THE POWER BUTTON */
.cta-button {
    display: inline-block;
    background-color: #06b746; /* Uber-like green for high visibility */
    color: #ffffff;
    padding: 15px 30px;
    margin: 20px 0;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.1s ease;
    box-shadow: 0 5px #049238; 
    border: none; /* Make it look like a button */
    cursor: pointer;
}

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

.cta-button:active {
    transform: translateY(2px);
    box-shadow: 0 3px #049238;
}

.small-print {
    font-size: 0.8em;
    color: #888;
}

.medium-text {
    font-size: 1.1em;
    font-weight: bold;
}

.how-it-works {
    text-align: left;
    padding: 20px;
}

.how-it-works h3 {
    text-align: center;
    color: #000;
}

.how-it-works ul {
    list-style: none;
    padding: 0;
}

.how-it-works li {
    background: #eef;
    margin: 10px 0;
    padding: 10px;
    border-left: 5px solid #06b746; /* Uber Green Accent */
}

footer {
    margin-top: 50px;
    padding: 15px 0;
    background-color: #333;
    color: #fff;
    font-size: 0.9em;
}