/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global styles */
html, body {
    overflow-x: hidden;
    font-family: 'Merriweather', serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #b565a7; /* Mauve Pink */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    margin-right: 15px;
}

header h1 {
    color: #d4af37; /* Gold */
    font-weight: 700;
    font-size: 24px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #d4af37; /* Gold */
    text-decoration: none;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #8e44ad;
    padding: 8px 12px;
    border-radius: 5px;
}

.content-wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 80px; /* to prevent content overlap with fixed header */
}

section {
    padding: 20px;
    background-color: #ecf0f1;
    margin: 20px auto;
    max-width: 1100px;
    font-size: 18px;
    color: #333;
}

section h2 {
    margin-bottom: 10px;
    color: #b565a7; /* Mauve Pink */
}

footer {
    background-color: #b565a7; /* Mauve Pink */
    color: #d4af37; /* Gold */
    text-align: center;
    padding: 20px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer p {
    font-weight: 700;
}

/* Pricing styles */
.pricing-level {
    margin-bottom: 40px;
}

.pricing-level h3 {
    color: #333;
    border-bottom: 2px solid #b565a7; /* Mauve Pink */
    padding-bottom: 10px;
}

.pricing-level .price {
    font-size: 16px;
    margin-top: 10px;
    font-weight: bold;
}

.pricing-level .price strong {
    color: #d4af37; /* Gold */
}

a {
    color: #b565a7; /* Mauve Pink */
    text-decoration: none;
}

a:hover, a:active {
    color: #d4af37; /* Gold */
    text-decoration: underline;
}
