/* General Typography & Colors */
body {
    font-family: Arial, sans-serif;
    background-color: #322d29; /* Dark color background */
    color: #f8f5f2; /* Light text color */
}

h1 {
    font-size: 36px;
    color: #d1c7bd; /* Light color for headings */
}

h2 {
    color: #72383d; /* Dark red headings */
}

p {
    color: #d9d9d9; /* Light grey text for paragraphs */
}

/* General Button Styling */
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ac9c8d; /* Beige button */
    color: #322d29; /* Dark text */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #d1c7bd; /* Light color on hover */
}

/* General Section Layout */
.pricing-section, .addons-section {
    display: flex;
    justify-content: space-around;
    padding: 50px 0;
}

/* Add-ons Section */
.addons-section {
    padding: 50px 20px;
    background-color: #322d29; /* Dark color for add-ons section */
    border-radius: 10px;
    margin-top: 30px;
    text-align: center;
}

/* List Styling for Grape Bullets */
ul {
    padding: 0 20px;
}

li {
    list-style-type: none;  /* No default bullets */
    margin-bottom: 10px;
    font-size: 18px;
}

li::before {
    content: "🍇";  /* Grape emoji as bullets */
    margin-right: 10px;
}

/* Box-Sizing (important for layout consistency) */
* {
    box-sizing: border-box;
}
