body {
    margin: 0;
    font-family: sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    height: 76px;
    background-color: #001410;
    border-bottom: 1px solid #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-background {
    background-color: #001410;
}

.hero-section {
    text-align: center;
}

.hero-section img {
    margin-bottom: 64px;
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 50px;
    color: #FFCE63;
    margin-top: 0;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 30px;
    }
}

.hero-section p {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: white;
    margin-top: 0;
}

.divider {
    height: 1px;
    background-color: #152F29;
    margin-top: 32px;
}

.legal-links {
    text-align: center;
    margin-top: 32px;
}

.legal-links a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500; /* Medium */
    font-size: 14px;
    color: #768985;
    text-decoration: none;
    margin: 0 16px; /* 32px padding between them means 16px on each side */
}

.hero-section .copyright {
    font-family: 'Poppins', sans-serif;
    font-weight: 500; /* Medium */
    font-size: 14px;
    color: #768985;
    text-align: center;
    margin-top: 32px;
}

.content-wrapper {
    width: -moz-fit-content;
    width: fit-content;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
}

.page-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 64px 300px;
}

@media (max-width: 768px) {
    .page-content {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .page-content {
        padding: 32px 16px;
    }
}

.page-content h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 50px;
    color: #001410;
    margin-top: 0;
    margin-bottom: 12px;
    text-align: left;
}

@media (max-width: 768px) {
    .page-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .page-content h1 {
        font-size: 30px;
    }
}

.page-content h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 28px;
    color: #001410;
    margin-top: 40px;
    margin-bottom: 8px;
    text-align: left;
}

.page-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #001410;
    margin-top: 16px;
    margin-bottom: 8px;
    text-align: left;
}

.page-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333333;
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.6;
}

.page-content ul {
    margin-top: 8px;
    margin-bottom: 12px;
    padding-left: 24px;
}

.page-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.page-content hr {
    width: 100%;
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 32px 0;
}
