html, body {
    height: 100%;
    margin: 0;
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main.content {
    flex: 1;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #f5f5f5;
    font-size: 0.9rem;
    color: #888;
}


body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #222;
}


header {
    background:   #5d6d7e;
    color: white;
    text-align: center;
    padding: 2.5rem 1rem;
}



header p {
    font-size: 1.2rem;
}

nav {
    margin-top: 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 500;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s;
}

nav a:hover,
nav a.active {
    border-bottom: 2px solid white;
}


main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

section {
    margin-bottom: 2.5rem;
}

section h2 {
    color:   #5d6d7e;
    border-bottom: 2px solid   #5d6d7e;
    padding-bottom: 0.3rem;
    margin-bottom: 1rem;
}

.site-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    margin-top: 0.5rem;
}



.quote {
    font-family: 'Dancing Script', cursive;
    font-style: italic;
    font-size: 1.4rem;
    text-align: center;
    color: #5d6d7e;
    margin: 2rem 0;
}

.square-bullets {
    list-style: square inside !important;
    padding-left: 1.5rem;
}
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}
.social-links a {
    color: #0056b3;
    text-decoration: none;
    margin: 0 8px;
    font-weight: 500;
}

.social-links a:hover {
    text-decoration: underline;
    color: #0073e6;
}

