


.body{
    position: relative;
    }

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em 2em;
    position: absolute; 
    top: 0;
    width: 100%;
    z-index: 10;
} 

header .logo img {
    width: 350px;
    margin: -50px;
}

nav {
    display: flex;
    align-items: center;
    gap: 1.5em;
}

nav a {
    color: #051661;
    text-decoration: none;
    font-size: 1.2em;
}

nav a.indicator {
    font-weight: bold;
}

.cart-icon {
    width: 24px;
    height: 24px;
}

 




.hero-section {
    position: relative;
}

.hero-section img {
    width: 100%;
    height: 65vh;
    display: block;
}

.title-section {
    background-color: #0b2545;
    padding: 2em 0;
    text-align: center;
}

.title-section h1 {
    margin-left: 3em;
    font-size: 4em;
    color: white;
    text-align: left;
    line-height: normal;
}

.title-section .divider {
    width: 75%;
    height: 2px;
    background-color: white; 
    margin: 1em auto 0; 
}


.content-section {
    display: flex;
    padding: 2em;
    background-color: #0b2545;
    color: white;
    padding-bottom: 30em;
}

.main-content {
    width: 60%;
    padding-right: 2em;
    margin-left: 10em; 
    min-height: 150vh;

}

.main-content article {
    margin-bottom: 2em;
}

.main-content article img {
    width: 100%;
       margin-top: 1em;
}

.view-more {
    background-color: #f4f4f4;
    color: #051661;
    padding: 0.5em 24em;
    border: none;
     cursor: pointer;
     font-size: 1em;

}


.view-more:hover {
    background-color: #051661;
    color: #fff;
}

.side-nav {
    width: 30%;
    position: sticky;
    top: 20px;
    background-color: #0b2545;
    padding: 10px;
    align-self: flex-start; 
}

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

.side-nav ul li {
    margin-bottom: 1em;
}

.side-nav ul li a {
    color: white;
    text-decoration: none;
}

.side-nav ul li a:hover {
    text-decoration: underline;
}





.footer {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 2rem;
    color:#051661;
    position: absolute; 
    bottom: 0; 
    width: 100%; 
    height: 300px; 
    z-index: 100; 
      padding-bottom:-5rem;
      padding-top:10rem;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.footer-content {
    max-width: 1800px; 
    margin: 0 auto;
    display: flex; 
    justify-content: space-between;
    width: 100%;
    padding-bottom:-5rem;
}

.footer-text {
    flex: 1; 
    text-align: left; 
    font-size: 16pt;
    padding-bottom:-5rem;
    
}

.footer-logo {
    flex: 0 0 auto;
}

.footer-logo {
    width: 350px; 
    height: auto; 
}