/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f6f9;
    color: #333;
    line-height: 1.6;
}

.main-title {
    margin: 30px 0 20px 0;
    font-size: 36px;
    font-weight: 700;
}

.welcome-text {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #555;
}

.tagline {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
    text-align: center ;
}

/* Container */
.container {
    max-width: 900px;
    margin: 60px auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Headings */
h1, h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #1f2d3d;
}

/* Buttons */
.btn {
    display: block;
    width: 220px;
    margin: 15px auto;
    padding: 12px;
    text-align: center;
    background: #1f2d3d;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.btn:hover {
    background: #0077b6;
    transform: scale(1.05);
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

table th {
    background-color: #1f2d3d;
    color: white;
}

/* Form Styling */
form {
    margin-top: 20px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

textarea {
    resize: vertical;
}

button {
    padding: 12px;
    width: 100%;
    background: #1f2d3d;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #0077b6;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #777;
}

/* Fieldset Styling */
fieldset {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

legend {
    padding: 0 10px;
    font-weight: bold;
    color: #1f2d3d;
}

.radio-group {
    margin-bottom: 10px;
}

.radio-group input {
    width: auto;
    margin-right: 8px;
}

.note {
    font-size: 14px;
    color: #777;
    text-align: center;
    margin-top: 10px;
}

/* About Card */
.about-card {
    background: #f8fafc;
    padding: 20px;
    border-left: 4px solid #0077b6;
    border-radius: 8px;
    margin-bottom: 30px;
}

/* Section Styling */
.about-section {
    margin-bottom: 30px;
}

.about-section h2 {
    text-align: left;
    margin-bottom: 10px;
    color: #1f2d3d;
}

/* Skills List */
.skills-list {
    list-style: none;
    padding-left: 0;
}

.skills-list li {
    background: #eef2f7;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 6px;
}

#formOutput {
    margin-top: 20px;
    padding: 15px;
    background-color: #eef2f7;
    border-radius: 8px;
    border-left: 4px solid #0077b6;
    }