/* General Page Styling */
body {
    background-color: #26265a;
    color: #e8e8e8;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 40px;
    padding: 20px;
}

/* Headings */
h1 {
    font-size: 70px;
    text-align: center;
    color: #ffd369;
    margin-bottom: 30px;
}

h2 {
    font-size: 28px;
    color: #ff9f68;
    margin-top: 40px;
}

h3 {
    font-size: 20px;
    color: #6ddccf;
}

h4 {
    font-size: 20px;
    color: #6ddccf;
    text-align: center;
}



/* Profile Section */
.profile-table {
    width: 100%;
    margin-bottom: 30px;
}

.profile-img {
    width: 400px;
    height: auto;
    border-radius: 10px;
}

.profile-info {
    padding-left: 10px;
    font-size: 18px;
}

.profile-table {
    width: auto;
    margin: 0 auto;
    border-collapse: collapse;
}

td {
    vertical-align: middle;
    padding: 0 12px;
}

/* Paragraphs */
p {
    font-size: 20px;
    line-height: 1.6;
}

/* Activities Table */
.activities-table {
    width: 100%;
    border-spacing: 20px;
}

.activity-img {
    width: 300px;
    height: auto;
    border-radius: 8px;
}

/* Links */
a {
    color: #ffd369;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #ff9f68;
    text-decoration: underline;
}


/* Survey Page */

.survey-page table {
    border-collapse: separate;
    border-spacing: 0 18px;
    margin: 20px auto;
}

.survey-page td {
    vertical-align: top;
    padding: 6px 16px;
}

/* Left column labels */
.survey-page td:first-child {
    font-weight: bold;
    white-space: nowrap;
    padding-right: 20px;
}

/* Inputs spacing */
.survey-page input[type="text"],
.survey-page select,
.survey-page textarea {
    padding: 6px;
    font-size: 16px;
}

/* Radio & checkbox spacing */
.survey-page input[type="radio"],
.survey-page input[type="checkbox"] {
    margin-right: 6px;
    margin-bottom: 6px;
}

/* Submit button */
.survey-page input[type="submit"] {
    margin-top: 12px;
    padding: 8px 18px;
    font-size: 16px;
    cursor: pointer;
}
