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

body {
    background-color: #f5f5f5;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.logo img {
    max-height: 60px;
}

/* Form Steps */
.application-form {
    padding: 20px;
}

.form-step {
    padding: 20px 0;
}

.hidden {
    display: none;
}

.progress-bar {
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: #044779;
}

.step-indicator {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
}

.subtitle {
    text-align: center;
    margin-top: -20px;
    margin-bottom: 30px;
    color: #777;
}

/* Options */
.options-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.option-group {
    text-align: center;
    width: calc(50% - 20px);
    max-width: 200px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s;
}

.option-group:hover {
    transform: translateY(-5px);
}

.option-group.selected {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(4, 71, 121, 0.2);
    outline: 2px solid #044779;
    border-radius: 5px;
}

.option-icon {
    font-size: 40px;
    margin-bottom: 15px;
    background-color: #f5f5f5;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.option-image {
    width: 100%;
    height: 190px;
    max-width: 190px;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 5px;
}

.option-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.option-btn {
    background-color: #044779;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    width: 100%;
    font-size: 16px;
    transition: background-color 0.3s;
}

.option-group:hover .option-btn {
    background-color: #033560;
}

/* Why Question Section */
.why-question {
    background-color: #044779;
    color: white;
    padding: 20px;
    border-radius: 5px;
    margin-top: 40px;
}

.why-question h3 {
    margin-bottom: 10px;
    text-align: center;
}

.why-question p {
    text-align: center;
}

/* Checkbox Options */
.checkbox-options {
    max-width: 500px;
    margin: 0 auto 30px;
}

.checkbox-group {
    background-color: #f5f5f5;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
}

.checkbox-group label {
    font-size: 16px;
    cursor: pointer;
    flex: 1;
}

/* Next Button */
.next-btn {
    background-color: #044779;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    margin: 0 auto 30px;
    transition: background-color 0.3s;
}

.next-btn:hover {
    background-color: #033560;
}

/* Final Step */
.success-message {
    background-color: #044779;
    color: white;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.success-message h2 {
    margin-bottom: 10px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
}

.submit-btn {
    background-color: #044779;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    width: 100%;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #033560;
}

.info-image {
    max-width: 600px;
    margin: 30px auto;
}

.info-image img {
    width: 100%;
    border-radius: 5px;
}

.info-text {
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.info-text p {
    margin-bottom: 15px;
}

/* Thank You Step */
.thank-you-message {
    text-align: center;
    padding: 40px 20px;
}

.thank-you-message h2 {
    margin-bottom: 20px;
    color: #044779;
}

.company-info {
    margin-top: 40px;
    color: #777;
}

/* Footer */
footer {
    background-color: #044779;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.company-details {
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .options-container {
        flex-direction: column;
        align-items: center;
    }
    
    .option-group {
        width: 100%;
        max-width: 300px;
    }
    
    h2 {
        font-size: 20px;
    }
}
