*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
  font-family: "Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif";
  color: #1e1e1e;
  background-color: #e4e4e4;
  line-height: 1.6;
}

.container{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}


.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    font-size: 18px;
}

.logo img{
    height: 50px;
    width: auto;
    
}

.nav ul {
    list-style: cross-fade(7);
    display: flex;
    gap: 2.2rem;
}

.nav a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
    color: #006d77
}

/*------Hero--------*/
.hero {
    background-color: url('assets/hero-bg.jpg') center/cover no-repeat;
    color: #ffffff;
    text-align: center;
    padding: 8rem 1rem;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background: #006d77;
    color: #ffffff;
    padding: 0.75 1.5;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease;
}

.btn-primary:{
    background: #004f54
}