/* Basic styles for layout and typography */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e9f9f3; /* Light pastel green */
    color: #333;
}

header {
    background-color: #a3d9b1; /* Pastel green */
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 3em;
    margin: 0;
}

header p {
    font-size: 1.2em;
    margin: 0;
    font-style: italic;
}

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

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

section {
    padding: 40px 20px;
    text-align: center;
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #a3d9b1; /* Pastel green */
}

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

section ul li {
    font-size: 1.2em;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

/* Light background for even-numbered products */
section ul li:nth-child(even) {
    background-color: #f0f9f4; /* Light background for even products */
    color: #333; /* Text color for even items */
}

/* Darker green background and white text for odd-numbered products */
section ul li:nth-child(odd) {
    background-color: #8cbf94; /* Darker green background for odd products */
    color: white; /* Text color for odd-numbered products */
}

/* Ensuring text inside odd-numbered items is white */
section ul li:nth-child(odd) strong, /* Product name */
section ul li:nth-child(odd) span, /* Price */
section ul li:nth-child(odd) p { /* Description */
    color: white;
}

footer {
    background-color: #a3d9b1; /* Pastel green */
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer p {
    margin: 0;
}

/* Accordion Styles */
.accordion-button {
    background-color: #a3d9b1; /* Pastel green */
    color: white;
    padding: 15px;
    text-align: left;
    border: none;
    width: 100%;
    cursor: pointer;
    font-size: 1.2em;
    margin: 5px 0;
    border-radius: 5px;
}

.accordion-button:hover {
    background-color: #8cbf94; /* Darker green on hover */
}

.accordion-content {
    display: none;
    padding: 0 15px;
    background-color: #f0f9f4; /* Light background for content */
    text-align: left;
}

.accordion-content ul {
    list-style: none;
    padding: 0;
}

.accordion-content ul li {
    font-size: 1.1em;
    margin: 5px 0;
}

/* Language Button Styles */
#language-switcher {
    margin-top: 20px;
    text-align: center;
}

#language-switcher button {
    padding: 12px 20px; /* Larger padding for bigger buttons */
    font-size: 16px; /* Larger font size */
    margin: 5px;
    border: none;
    background-color: #a3d9b1; /* Pastel green */
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

#language-switcher button:hover {
    background-color: #8cbf94; /* Darker green on hover */
}

/* Price Styles */
strong {
    font-weight: bold;
    color: #333; /* Color for bold text (product name and price) */
}

/* Regular text for descriptions */
.accordion-content li {
    font-weight: normal;
    font-size: 1em; /* Make sure description text is normal */
}

/* Price styles */
span {
    font-weight: bold; /* Bold for price */
    color: #333; /* Price color */
}

/* General style for accordion buttons */
.accordion-button {
    padding: 15px;
    font-size: 1.2em;
    background-color: #a3d9b1;
    color: white;
    border: none;
    cursor: pointer;
    margin: 5px 0;
    border-radius: 5px;
}

.accordion-button:hover {
    background-color: #8cbf94; /* Darker green on hover */
}