
/* Global Navigation Styling */
nav a {
    font-weight: bold;
    color: white;
    text-decoration: none;
}

a[href^="mailto:"],
a[href^="tel:"] {
    color: #FFA64D;
    text-decoration: none;
}

.socials a {
    color: #FFA64D;
}

.socials a:hover {
    color: white;
}

nav a:hover {
    color: #333;
    background-color: white;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

h1 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #FFA64D;
}

ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.75rem;
}

p {
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

@media (max-width: 600px) {
    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        margin: 0.25rem;
        font-size: 0.9rem;
    }

    .socials {
        justify-content: center;
    }
}
