body {
    background-color: #ffffff;
}

.navbar {
    background-color: #44468B;
    padding: 10px 0;
}

.navbar-brand {
    font-size: 30px;
    font-family: 'Playfair Display', serif;
    color: #FFA500;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.navbar-brand:hover {
    color: #FFD700;
    letter-spacing: 2px;
}

.menu-link {
    color: #ffffff;
    text-decoration: underline;
}

.social-icons {
    width: 30px;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.social-icons:hover {
    transform: scale(1.1);
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

h2 {
    font-size: 1.75rem;
    margin-top: 30px;
    color: #333;
}

p, li {
    font-size: 1rem;
    line-height: 1.7;
}

ul {
    margin-left: 20px;
}

.footer {
    background-color: #44468B;
    color: white;
    text-align: center;
    padding: 20px 0;
}