/* 
* Stone University Website Styles
* Author: Your Name
* Version: 1.0
* Year: 2025
*/

/* ====== GENERAL STYLES ====== */
:root {
    --primary-color: #003366;
    --secondary-color: #990000;
    --accent-color: #f8d568;
    --light-color: #f4f4f8;
    --dark-color: #333333;
    --text-color: #444444;
    --heading-color: #222222;
    --link-color: #1a73e8;
    --footer-color: #1e3a5f;
    --border-color: #e1e1e1;
    --success-color: #28a745;
    --error-color: #dc3545;
    --grey-color: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    font-size: 16px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Baskerville', 'Times New Roman', serif;
    color: var(--heading-color);
    margin-bottom: 0.8em;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2em;
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 60px 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
}

.primary-btn:hover {
    background-color: #002347;
    color: white;
}

.secondary-btn {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ====== HEADER AND NAVIGATION ====== */
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.contact-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
}

.social-links a {
    color: white;
    margin-left: 15px;
    font-size: 1rem;
}

.social-links a:hover {
    color: var(--accent-color);
}

.navbar {
    background-color: white;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Libre Baskerville', 'Times New Roman', serif;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-color);
}

/* ====== HERO SECTION ====== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://source.unsplash.com/random/1600x900/?university,campus') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hero-buttons {
    margin-top: 30px;
}

.hero-buttons .btn {
    margin: 0 10px;
}

/* ====== FEATURES SECTION ====== */
.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-box {
    background-color: white;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h3 {
    margin-bottom: 15px;
}

/* ====== EVENTS SECTION ====== */
.upcoming-events {
    background-color: white;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.event-card {
    display: flex;
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.event-date {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    text-align: center;
}

.event-date .month {
    font-size: 1.2rem;
    font-weight: 700;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
}

.event-date .year {
    font-size: 1.2rem;
}

.event-details {
    padding: 20px;
    flex-grow: 1;
}

.event-details h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.event-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.event-link:hover {
    text-decoration: underline;
}

/* ====== NEWS SECTION ====== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.news-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    margin-bottom: 10px;
}

.news-content .date {
    color: var(--grey-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.news-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.news-link:hover {
    text-decoration: underline;
}

/* ====== PAGE HEADER ====== */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://source.unsplash.com/random/1600x600/?university,campus') no-repeat center center/cover;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.page-header h1 {
    color: white;
    margin-bottom: 15px;
}

/* ====== ABOUT PAGE STYLES ====== */
.about-intro .container {
    padding: 20px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mission-vision {
    background-color: white;
    padding: 60px 0;
}

.mission-vision .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mission-box, .vision-box {
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.mission-box {
    background-color: var(--primary-color);
    color: white;
}

.mission-box h2 {
    color: white;
}

.vision-box {
    background-color: var(--light-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-card {
    background-color: white;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.campus-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 15px;
}

.gallery-caption h3 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.tour-cta {
    text-align: center;
    margin-top: 40px;
}

.tour-buttons {
    margin-top: 20px;
}

.tour-buttons .btn {
    margin: 0 10px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
}

.timeline:before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 20px;
    right: -8px;
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -8px;
}

.timeline-content {
    padding: 20px;
    background-color: white;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ====== ACADEMICS PAGE STYLES ====== */
.academic-intro {
    background-color: white;
    padding: 60px 0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat-box {
    text-align: center;
    padding: 20px;
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
}

.colleges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.college-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.college-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.college-content {
    padding: 20px;
}

.college-content h3 {
    margin-bottom: 10px;
}

.college-content .btn {
    margin-top: 15px;
}

.tabs-container {
    margin-top: 30px;
}

.tabs {
    display: flex;
    border-bottom: 2px solid var(--border-color);
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.tab-content {
    display: none;
    padding: 30px 0;
}

.tab-content.active {
    display: block;
}

.programs-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.program h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.program-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.program-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.program-link:hover i {
    transform: translateX(5px);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.resource-card {
    background-color: white;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.resource-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.resource-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.faculty-slider {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.faculty-profile {
    background-color: white;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    width: 300px;
    margin: 15px;
}

.faculty-profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.faculty-title {
    color: var(--grey-color);
    margin-bottom: 15px;
}

.faculty-cta {
    text-align: center;
    margin-top: 40px;
}

/* ====== ADMISSIONS PAGE STYLES ====== */
.admissions-intro {
    background-color: white;
    padding: 60px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-content .cta-buttons {
    margin-top: 30px;
}

.intro-content .btn {
    margin-right: 15px;
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.date-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.date-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: center;
}

.date-header h3 {
    color: white;
    margin: 0;
}

.date-content {
    padding: 20px;
}

.date-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.date-item:last-child {
    border-bottom: none;
}

.date-label {
    font-weight: 600;
}

.process-tabs {
    margin-top: 30px;
}

.steps {
    margin-top: 30px;
}

.step {
    display: flex;
    margin-bottom: 30px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-info h3 {
    margin-bottom: 5px;
}

.process-cta {
    text-align: center;
    margin-top: 40px;
}

.tuition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 30px;
}

.tuition-table {
    margin-top: 20px;
    border-collapse: collapse;
    width: 100%;
}

.tuition-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.tuition-row.header {
    font-weight: 700;
    background-color: var(--light-color);
}

.tuition-row.total {
    font-weight: 700;
    background-color: var(--light-color);
}

.tuition-note {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--grey-color);
}

.aid-types {
    margin-top: 20px;
}

.aid-type {
    margin-bottom: 20px;
}

.aid-type h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.aid-cta {
    margin-top: 30px;
}

.aid-cta .btn {
    margin-right: 15px;
    margin-bottom: 15px;
}

.visit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 30px;
}

.visit-options {
    list-style: inside;
    margin: 20px 0;
}

.visit-options li {
    margin-bottom: 10px;
}

.visit-buttons {
    margin-top: 30px;
}

.visit-buttons .btn {
    margin-right: 15px;
}

.accordion {
    margin-top: 30px;
}

.accordion-item {
    background-color: white;
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    background-color: var(--light-color);
    border: none;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.accordion-header:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
}

.accordion-header.active:after {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 200px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 30px;
}

.contact-details {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: inherit;
}

.form-group textarea {
    resize: vertical;
}

/* ====== CONTACT PAGE STYLES ====== */
.contact-main {
    background-color: white;
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.social-media {
    margin-top: 20px;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
}

.map-container {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.map-buttons {
    text-align: center;
    margin-top: 30px;
}

.map-buttons .btn {
    margin: 0 10px;
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.directory-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.directory-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.directory-card p {
    margin-bottom: 10px;
}

/* ====== FOOTER STYLES ====== */
footer {
    background-color: var(--footer-color);
    color: white;
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section.about p {
    margin-bottom: 20px;
}

.footer-section.about .contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.footer-section.about .contact p i {
    margin-right: 10px;
    margin-top: 5px;
}

.footer-section.links ul {
    list-style: none;
}

.footer-section.links ul li {
    margin-bottom: 10px;
}

.footer-section.links ul li a {
    color: #ddd;
    transition: color 0.3s ease;
}

.footer-section.links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-section.newsletter form {
    display: flex;
    margin-bottom: 20px;
}

.footer-section.newsletter input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.footer-section.newsletter button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.footer-section.newsletter .social {
    margin-top: 20px;
}

.footer-section.newsletter .social a {
    color: white;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-section.newsletter .social a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

/* ====== RESPONSIVE STYLES ====== */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .about-grid,
    .intro-grid,
    .mission-vision .container,
    .tuition-grid,
    .visit-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        left: 0;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline:before {
        left: 40px;
    }
    
    .timeline-dot {
        left: 32px;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-dot {
        left: 32px;
    }
}

@media (max-width: 768px) {
    .contact-bar .container {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info {
        margin-bottom: 10px;
    }
    
    .navbar .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .nav-links {
        justify-content: center;
    }
    
    .nav-links li {
        margin: 0 10px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .tuition-row {
        grid-template-columns: 1fr;
    }
    
    .tuition-row.header {
        display: none;
    }
    
    .tuition-cell {
        padding: 5px 0;
    }
    
    .tuition-cell:first-child {
        font-weight: 600;
    }
}

@media (max-width: 576px) {
    section {
        padding: 40px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        height: 60vh;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 200px;
    }
    
    .nav-links {
        flex-wrap: wrap;
    }
    
    .nav-links li {
        margin-bottom: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
