html, body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #333333;
    overflow-x: hidden;
}

/* Navigation */
.nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1px 20px;
    background: linear-gradient(135deg, #e0e0e0, #c8b2d9);
    color: #ffffff;
    position: relative;
}

.home-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-right: auto;
    color: #ffffff;
}

.menu-icon {
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
}

.dropdown {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    z-index: 10;
}

.dropdown a {
    display: block;
    text-decoration: none;
    color: #333333;
    padding: 10px 20px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.dropdown a:hover {
    background-color: #c8b2d9;
    color: #ffffff;
}

/* Header */
header {
    text-align: center;
    padding: 70px 20px;
    background: linear-gradient(135deg, #e0e0e0, #c8b2d9);
    color: #ffffff;
}

header h1 {
    font-size: 4.55rem;
    font-weight: 400;
    margin: 0 0 10px;
    color: rgb(41, 39, 39);
    font-family: "Playwrite AU SA", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

header p {
    font-size: 1.25rem;
    font-weight: 400;
}