Copy of 2024 Forms for Financial Aid
/* Financial Aid Landing Page – Custom CSS Styling Guide */
/* ====== Base Styles ====== */
body {
font-family: ‘Open Sans’, Arial, sans-serif;
color: #333;
line-height: 1.6;
}
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
}
section {
padding: 4rem 1rem;
}
h1, h2, h3 {
font-family: ‘Montserrat’, sans-serif;
color: #002D62; /* Eastern Blue */
margin-bottom: 1rem;
}
p {
margin-bottom: 1rem;
}
a {
color: #002D62;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* ====== Hero Section ====== /
.hero {
background-color: #002D62; / Deep Eastern Blue */
color: #fff;
text-align: center;
padding: 6rem 1rem;
}
.hero h1 {
font-size: 2.5rem;
font-weight: 700;
}
.hero p {
font-size: 1.2rem;
max-width: 700px;
margin: 1rem auto;
}
.hero a {
display: inline-block;
background-color: #fff;
color: #002D62;
padding: 0.75rem 1.5rem;
border-radius: 50px;
font-weight: 600;
transition: all 0.3s ease;
}
.hero a:hover {
background-color: #E1E8F0;
}
/* ====== Welcome Section ====== */
.welcome {
background-color: #f8f9fb;
text-align: center;
}
.welcome h2 {
color: #002D62;
}
/* ====== What is Financial Aid / FAFSA ====== */
.what-is-financial-aid, .what-is-fafsa {
background-color: #ffffff;
}
.what-is-fafsa {
background-color: #e6f0fa;
}
.what-is-financial-aid ul li, .what-is-fafsa ul li {
margin-bottom: 0.5rem;
}
/* ====== Aid Options Grid ====== */
.aid-options .grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
}
.aid-options .grid div {
background-color: #fff;
border-radius: 12px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
padding: 1.5rem;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.aid-options .grid div:hover {
transform: translateY(-5px);
box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
/* ====== Contact Section ====== */
.get-help {
background-color: #f1f3f5;
text-align: center;
}
.get-help h2 {
color: #002D62;
}
.get-help a {
color: #004B91;
}
.get-help a:hover {
color: #001f3f;
}
/* ====== Responsive Tweaks ====== */
@media (max-width: 768px) {
.hero h1 {
font-size: 2rem;
}
.hero p {
font-size: 1rem;
}
section {
padding: 3rem 1rem;
}
}