.header {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    position: relative;
}

.logo img {
    height: 60px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0 0;
    padding: 0 0;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'playFairRegular', sans-serif;
}

.nav-left,
.nav-right {
    display: flex;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 15px;
    border-top: 1px solid #eee;
    position: fixed;
    width: 100%;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}

.mobile-menu a {
    color: #333;
    text-decoration: none;
    font-family: 'playFairRegular';
}

/* Responsive */
@media (max-width: 768px) {

    .nav-left,
    .nav-right {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .logo {
        margin: auto;
    }

    .mobile-menu {
        display: none;
    }

    .mobile-menu.active {
        display: flex;
    }

    .logo img {
        height: 40px;
    }
}

.pp-container {
    max-width: 957px;
    margin-inline: auto;
    padding: 50px 15px;
}

@media only screen and (max-width: 768px) {
    .pp-container {
        padding: 20px 15px;
    }
}

.pp-container h3 {
    font-family: 'playFairRegular';
    font-size: 2.5em;
    color: #4c423a;
    text-align: center;
    margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
    .pp-container h3 {
        font-size: 2em;
    }
}

.pp-container .pp-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: 'playFairRegular';
    color: #4c423a;
}

@media only screen and (max-width: 768px) {
    .pp-container .pp-content {
        gap: 8px;
    }
}

.pp-container .pp-content .heading {
    font-size: 1.575rem;
    font-weight: 600;
}

@media only screen and (max-width: 768px) {
    .pp-container .pp-content .heading {
        font-size: 1.3rem;
    }
}

.pp-container .pp-content .sub_heading {
    font-size: 1.3rem;
    font-weight: 600;
}

@media only screen and (max-width: 768px) {
    .pp-container .pp-content .sub_heading {
        font-size: 1.1rem;
    }
}

.pp-container .pp-content .bold_text {
    font-size: 1rem;
    font-weight: 600;
}

@media only screen and (max-width: 768px) {
    .pp-container .pp-content .bold_text {
        font-size: 0.9rem;
    }
}

.pp-container .pp-content .text {
    font-size: 1rem;
    font-weight: 500;
}

@media only screen and (max-width: 768px) {
    .pp-container .pp-content .text {
        font-size: 0.9rem;
    }
}

.pp-container .pp-content ul {
    list-style-position: inside;
}