/* Global Styles */
:root {
    --primary: #003366;
    --secondary: #f8b400;
    --accent: #e74c3c;
    --light: #f5f5f5;
    --dark: #333;
    --success: #2ecc71;
    --white: #ffffff;
    --gray: #7f8c8d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.flex {
    display: flex;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}


/* Application Form Specific Styles */
.application-container {
    max-width: 800px;
    margin: 120px auto 50px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h1 {
    color: var(--primary);
    margin-bottom: 10px;
}

.form-section {
    margin-bottom: 25px;
}

.form-section h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}

textarea {
    height: 120px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.required::after {
    content: "*";
    color: red;
    margin-left: 4px;
}

.form-footer {
    text-align: center;
    margin-top: 30px;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--primary);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.btn-submit i {
    margin-right: 8px;
}

.btn-submit p {
    margin: 0;
    font-weight: bold;
}


.btn-submit:hover {
    background-color: var(--secondary);
    color: #000;
}

.privacy-note {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .application-container {
        padding: 20px;
        margin-top: 100px;
    }
}

.btn-submit {
    width: 100%;
    background-color: var(--primary);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

.btn-home {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    background-color: var(--light);
    color: var(--dark);
    width: 100%;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

btn-home i {
    margin-right: 8px;
}

.btn-home i {
    margin-right: 8px; /* Space between icon and text */
}

.btn-home p {
    margin: 0;
}

.btn-home:hover {
    background-color: var(--secondary);
    color: #000;
}