<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: #f1f8fb;
    padding: 20px;
    min-height: 100vh;
}

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

.banner {
    width: 100%;
    height: auto;
    /* aspect-ratio: 16/9; */
    border-radius: 16px;
    position: relative;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.form-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

.form-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #eee;
}

.form-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.toolbar button:hover {
    background: #f5f5f5;
    color: #333;
}

.form-content {
    padding: 30px;
}

.form-group {
    margin-bottom: 28px;
    position: relative;
}

.form-group label {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    outline: none;
    transition: all 0.2s;
    background: #fafafa;
}

.form-group input:focus {
    border-color: #29b1d6;
    background: white;
    box-shadow: 0 0 0 4px rgba(255,138,0,0.1);
}

.required {
    color: #3fbddf;
    margin-left: 4px;
}

.radio-group, .checkbox-group {
    margin-top: 15px;
}

.radio-option, .checkbox-option {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.2s;
}

.radio-option:hover, .checkbox-option:hover {
    background: #f8f8f8;
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 3px;
    cursor: pointer;
}

.radio-option label,
.checkbox-option label {
    font-weight: normal;
    font-size: 15px;
    color: #444;
    cursor: pointer;
    line-height: 1.5;
}

.btnnAll{
    display: flex;
    width: 100%;
    gap:10px;
}

.submit-button {
    background: linear-gradient(135deg, #0e1010, #185e8f);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    /* font-weight: 600; */
    border-radius: 8px;
    cursor: pointer;
    width: 50%;
    margin-top: 20px;
    transition: all 0.3s;
    /* box-shadow: 0 4px 15px rgba(230,57,70,0.2); */
}


.submit-buttonIN {
    background: linear-gradient(135deg, #0e1010, #185e8f);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    /* font-weight: 600; */
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s;
    /* box-shadow: 0 4px 15px rgba(230,57,70,0.2); */
}

.submit-button:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 6px 20px rgba(230,57,70,0.3); */
}

.submit-button:active {
    transform: translateY(0);
}

@media screen and (max-width: 768px) {
    .container {
        margin: 10px;
    }
    
    .banner {
        /* aspect-ratio: 3/2; */
        border-radius: 12px;
    }

    .form-header, 
    .form-content {
        padding: 20px;
    }

    .form-title {
        font-size: 24px;
    }

    .toolbar {
        gap: 8px;
    }

    .toolbar button {
        padding: 6px 10px;
    }
}

@media screen and (max-width: 480px) {
    .banner {
        /* aspect-ratio: 1/1; */
        border-radius: 8px;
    }

    .form-group input[type="text"],
    .form-group input[type="tel"] {
        padding: 10px 14px;
    }

    .radio-option, 
    .checkbox-option {
        padding: 8px;
    }
}





</pre></body></html>