/* Global Styles */
body {
    background: #fdfefe;
    font-size: 16px; /* Increased base font size for better readability */
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

/* Layout Container */
.wrapper {
    max-width: 1440px;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Subtle shadow */
    width: 100%;
}

/* Header / Banner Images */
.banner-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Stack on mobile */
    width: 100%;
}

.banner-container img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navigation Menu */
.topmenu {
    padding: 15px;
    background: #ffffff;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    text-align: center;
    position: relative;
}

.topmenu a {
    padding: 10px 20px;
    color: #000000;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
}

.topmenu a:hover {
    text-decoration: underline;
    color: #666666;
    background-color: #f9f9f9;
    border-radius: 4px;
}

/* Hamburger Button */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    color: #333;
}

/* Content Area */
.content-container {
    max-width: 1200px; /* Readability width inside the 1440px wrapper */
    margin: 0 auto;
    padding: 20px;
}

h1 {
    font-size: 24px;
    color: #222;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .banner-container {
        flex-direction: column;
        align-items: center;
    }

    .hamburger {
        display: block;
        margin: 0 auto;
    }

    .topmenu-links {
        display: none;
        flex-direction: column;
    }

    .topmenu-links.active {
        display: flex;
    }

    .topmenu a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #eee;
        width: 100%;
        box-sizing: border-box;
    }
    
    .topmenu a:last-child {
        border-bottom: none;
    }

    /* Reset legacy table widths */
    table {
        width: 100% !important;
        height: auto !important;
        display: block;
    }
    
    tbody, tr, td {
        display: block;
        width: 100% !important;
        height: auto !important;
        background: none !important; /* Remove table corner images on mobile if they break layout */
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

/* Utility */
.center-text {
    text-align: center;
}

.phone-number {
    font-size: 20px;
    font-weight: bold;
    color: #d32f2f; /* Red accent */
}
