.fleet-page {
    color: #333;
    line-height: 1.6;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.fleet-page .content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.fleet-page h1, 
.fleet-page h2, 
.fleet-page h3 {
    color: #000;
    margin-bottom: 15px;
}

.fleet-page h1 {
    font-size: 28px;
    margin-top: 30px;
}

.fleet-page h2 {
    font-size: 24px;
    margin-top: 35px;
}

.fleet-page p {
    margin-bottom: 15px;
}

.fleet-page ul {
    list-style-type: none;
    margin-bottom: 20px;
    padding-left: 20px;
}

.fleet-page li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.fleet-page li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #000;
    font-weight: bold;
}

.fleet-page .bold {
    font-weight: bold;
}

.fleet-page form {
    margin-top: 20px;
}

.fleet-page .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.fleet-page .form-group {
    flex: 1;
    min-width: 250px;
}
.fleet-page input,
.fleet-page select,
.fleet-page textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 5px;
    font-size: 16px;
}

.fleet-page input::placeholder,
.fleet-page textarea::placeholder,
.fleet-page select::placeholder {
    color: #9a9a9a;
    opacity: 1;
}


.fleet-page textarea {
    height: 120px;
    resize: vertical;
}
 

.fleet-page button {
    background-color: #000;
    color: white;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

.fleet-page .consumer-info {
    margin-top: 30px;
    margin-bottom: 20px;
}

.fleet-page .consumer-info p {
    margin-bottom: 10px;
}


.checkbox-group {
    display: flex;
    gap: 30px;
    margin: 20px 0;
}

.checkbox-item {
    display: flex;
    align-items: center;
}

.checkbox-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    background-color: #e9e9e9;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    margin: 0;
    cursor: pointer;
    position: relative;
}

.checkbox-item input[type="checkbox"]:checked {
    background-color: #04090e;
    border-color: #232d38;
}

.checkbox-item input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    left: 7px;
    top: 3px;
}

.checkbox-item label {
    font-size: 16px;
    margin-left: 8px;
    cursor: pointer;
}



/* CSS for select with custom arrow matching screenshot */
select {
    height: 46px; /* Match the input field height */
    line-height: normal;
    padding: 12px;
    padding-right: 35px; /* Space for the arrow */
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 16px;
    color: #888;
    box-sizing: border-box;
    width: 100%;
    
    /* Remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    
    /* Add custom chevron arrow that matches screenshot */
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 24px;
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
    select {
        font-size: 16px !important; /* Prevents zoom on iOS */
        min-height: 46px;
    }
}

/* Reset select focus outline to match inputs */
select:focus {
    outline: none;
    border-color: #4d90fe;
}

/* Hide arrow in IE10+ */
select::-ms-expand {
    display: none;
}