div h2 {
    font-size: 2rem;
    color: #333;
    text-align: center;
}

div p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Section Styling */
.section {
    padding: 4rem 0;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
}

#company-overview,
#mission,
#vision {
    background-image: url(../Images/logo\ byuta-022.png);
    background-size: 50%;
}

/* Work Schedule Section */
#work-schedule {
    padding: 50px;
    background-color: #f9f9f9;
    text-align: center;
}


#work-schedule table {
    margin: 20px auto;
    width: 90%;
    border: 5px;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

caption {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

th,
td {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    font-size: 1rem;
}

th {
    /* background-color: #007bff; */
    background-color: #00625fbb;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

td {
    color: #555;
    font-weight: 500;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #eaf5fc;
    transition: background-color 0.3s ease;
}

tbody tr td[colspan="5"] {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    color: red;
}