/* Basic Reset & Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
    color: #333;
}

/* Header Section */
.main-header {
    background-color: #007bff;
    color: white;
    padding: 20px;
    text-align: center;
}

.main-header h1 {
    margin-bottom: 5px;
}

.main-header p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.main-header .tagline {
    font-weight: bold;
    font-size: 1.1rem;
}

/* Form Container */
main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.form-container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: #007bff;
}

/* Radio Button Styling */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-group label {
    font-weight: normal;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-group input[type="radio"] {
    margin-right: 10px;
}

/* Submit Button */
button[type="submit"] {
    width: 100%;
    background-color: #007bff;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Syllabus Link */
.syllabus-link {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #007bff;
    margin-top: 20px;
    font-weight: 600;
}

.syllabus-link img {
    margin-right: 8px;
    width: 20px;
    height: 20px;
}