body{
    margin: 0;
    font-family: "Roboto Slab", serif;
    background: #F2F0EF; 
}

.mobileNav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #AAAAAA;
    padding: 16px;
}

.logo{
    height: 32px;
    width: 32px;
}

.menuIcon{
    width: 32px;
    height: 32px;
}

.heroImage{
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: right center;
    display: block;
}

.hero {
    text-align: center;
}

.roboto-slab-{
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.heroText{ 
    text-align: center;
    padding: 16px 24px;
    color: black;
}
.heroName{
    font-size: 1.6rem;
    font-weight: 700;
    margin: 12px 0 14px 0;
}

.heroTitle{
    font-size: 1.3rem;
    font-weight: 500;
    margin: 4px 0 8px 0;
}

.heroDescription{
    font-size: 1rem;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
    line-height: 1.4;
}

.heroIcon{
    width: 32px;
    height: 32px;
    margin-top: 32px;
}

.content{
    padding: 0;
    margin: 0;
}

.card{
    position: relative;
    margin:0;
    padding:0;
}

.cardContent{
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.cardContent h2 {
    margin: 0 0 16px 0;
    font-size: 1.6rem;
}

.cardContent p {
    margin: 0 0 16px 0;
    font-size: 1.1rem;
}

.cardContent button {
    padding: 10px 20px;
    background: transparent;
    color: white;
    border-radius: 6px;
    border: 2px solid white;
    font-family: inherit;
    font-size: 1rem;
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(108, 139, 139, 0.55),
        rgba(151, 148, 145, 0.7)
    );
    z-index: 1;
}

.cardContent button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cardImg{
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    position:relative;
    z-index: 0;
}