* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}
body {
    position: relative;
    width: 100%;
    min-height: 100dvh;
    display: flex;
    overflow: auto;
}
.container {
    position: relative;
    width: 100%;
    height: 100%;
}
.header {
    position: sticky;
    top: 0;
    height: 10rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.header-info {
    position: relative;
    height: 3rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0000ff;
    padding: 0 1rem;
}
.header-info .name,
.header-info .address {
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
}
.header-info .name {
    justify-content: flex-start;
}
.header-info .address {
    justify-content: flex-end;
    gap: 1rem;
}
.header-info .name p,
.header-info .address a {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.header-info .address a {
    text-decoration: none;
}
.header-info .name p ion-icon,
.header-info .address a ion-icon {
    font-size: 1.2rem;
    color: #fff;
    border-radius: 50%;
    border: 1px solid #fff;
    padding: 0.35rem;
}
.header-info .name p span,
.header-info .address a span {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.header-menu {
    position: relative;
    height: calc(100% - 3rem);
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.header-menu .logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 25rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0 1rem 0.5rem;
    border-radius: 0 0 50% 50%;
    border: 1px solid #0000ff;
    background-color: #fff;
    z-index: 9;
}
.header-menu .logo a {
    text-decoration: none;
}
.header-menu .logo a img {
    height: 5rem;
    width: 5rem;
    border-radius: 50%;
}
.header-menu .menu-left,
.header-menu .menu-right {
    position: relative;
    height: 5rem;
    width: 50%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #0000ff;
}
.menu-left .menu-list,
.menu-right .menu-list {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}
.menu-left .menu-list {
    justify-content: flex-end;
    padding-right: 15rem;
    gap: 1rem;
}
.menu-right .menu-list {
    justify-content: flex-start;
    padding-left: 15rem;
    gap: 1rem;
}
.menu-left .menu-list .menu-item,
.menu-right .menu-list .menu-item {
    position: relative;
    height: 100%;
    width: 15rem;
    display: flex;
    list-style-type: none;
    cursor: pointer;
}
.menu-left .menu-list .menu-item a,
.menu-right .menu-list .menu-item a {
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-left .menu-list .menu-item a ion-icon,
.menu-right .menu-list .menu-item a ion-icon {
    display: none;
}
.menu-left .menu-list .menu-item a span,
.menu-right .menu-list .menu-item a span {
    font-size: 1.4rem;
    font-weight: 600;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    transition: color 0.3s ease;
}
.menu-left .menu-list .menu-item.active a span,
.menu-right .menu-list .menu-item.active a span {
    color: #0000ff;
}
.menu-left .menu-list .menu-item.active::after,
.menu-right .menu-list .menu-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #0000ff;
}
.menu-header {
    display: none;
}
.main {
    position: relative;
    width: 100%;
}
.content-section {
    position: relative;
    min-height: calc(100vh - 10rem);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    scroll-margin-top: 10rem;
}
.footer {
    position: relative;
    width: 100%;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0000ff;
}