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

html {
	scroll-padding-top: 70px;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f4f4;
}

header {
    background-color: #003366;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;  /* Standard z-index for header */
}

#menu-toggle {
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.logo-right {
    height: 60px;
    margin-left: auto;
}

.company-name {
    color: white;
    font-size: 2rem;
    text-align: center;
    margin: 0 auto;
    flex-grow: 1;
}

.side-menu {
    height: 100%;
    width: 0px; /* Original menu width */
    position: fixed;
    top: 0;
    left: 0;
    background-color: #005f99; /* Matching the framed title color */
    overflow-x: hidden;  /* Prevent horizontal overflow */
    transition: 0.5s;
    padding-top: 300px;  /* Standard padding */
}

.side-menu ul {
    list-style-type: none;
    padding: 0;
}

.side-menu ul li {
    padding: 20px 0;
    text-align: center;
}

.side-menu ul li a {
    color: white;
    font-size: 22px;
    text-decoration: none;
    display: block;
}

.side-menu ul li a:hover {
    background-color: #575757;
}

.hero img {
    width: 100%;
    height: auto;
    margin-top: 70px;
}

/* Section styles with text-box and title improvements */
.modern-section {
    padding: 40px;
    margin: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    max-width: 1200px;
    margin: 40px auto;
}

.text-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.framed-title {
    background-color: #005f99;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    font-size: 1.8rem;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    width: 100%;
    bottom: 0;
}

/* Standard media queries without mobile-specific adjustments */
