:root {
    --primary-color: #7b97ab;
    --secondary-color: #4a6c81;
    --text-color: #333;
    --background-color: #f5f5f5;
    --border-color: #ddd;
    --accent-color: #c41e3a;
    --warning-color: #c41e3a;
    --link-color: #0443b8;
    --bold-link: #2672ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.bold_link {
    color: var(--bold-link);
    font-weight: bold;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Header and Navigation */
.navbar {
    background-color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 50px;
}

.warning {
    color: var(--warning-color);
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Day Sections */
.day-section {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.day-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
}

.day-header h2 {
    font-size: 1.2rem;
}

.day-content {
    padding: 1rem;
    display: none;
}

.day-content.active {
    display: block;
}

.section {
    margin-bottom: 1.5rem;
}

.section h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.section ul {
    list-style: disc;
    padding-left: 3rem;
}

.section ul li {
    margin-bottom: 0.5rem;
}

.section a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s;
}

.section a:hover {
    text-decoration: underline;
}

/* Payment Page */
.payment-info {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.message-box {
    margin-top: 1rem;
    padding: 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
}

/* Contact Page */
.contact-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-details {
    margin-top: 1rem;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #25d366;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border: 2px solid #25d366;
    border-radius: 4px;
    transition: all 0.3s;
}

.whatsapp-link:hover {
    background-color: #25d366;
    color: white;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 1rem;
    margin-top: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo img {
    height: 40px;
}

.footer-info {
    text-align: center;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}