/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f9;
    color: #333;
}

/* Header */
header {
    background: linear-gradient(45deg, #009688, #26a69a);
    color: #fff;
    padding: 1.5rem 0;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
}

header::after {
    content: "";
    display: block;
    width: 80px;
    /* Width of the white bar */
    height: 4px;
    /* Thickness of the white bar */
    background: #fff;
    margin: 1rem auto 0;
    /* Center the bar */
    border-radius: 2px;
    /* Rounded edges */
}

/* Container */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Wait Time Section */
.wait-time {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    /* Larger font size for prominence */
    font-weight: bold;
    color: #333;
}

/* Pricing Section */
.pricing-box {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.pricing-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.pricing-text {
    width: 60%;
}

.pricing-image img {
    max-width: 70%;
    height: auto;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing h3 {
    margin-top: 1rem;
    color: #666;
    font-size: 1.1rem;
}

.pricing .note {
    font-style: italic;
    color: #555;
    margin-top: 0.5rem;
}

/* Strings Section */
.strings {
    margin-bottom: 2rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.strings h2 {
    color: #009688;
}

.strings ul {
    margin: 0.5rem 0 1rem 0;
    padding: 0;
    list-style: disc;
    padding-left: 1.5rem;
}

/* Contact Section */
.contact {
    margin-bottom: 2rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact h2 {
    color: #009688;
}

.contact ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact ul li {
    margin: 0.5rem 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem 0;
    background: #333;
    color: #fff;
    margin-top: 2rem;
}