/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    
}

header {
    background-color: #00796b;
    color: white;
    padding: 20px 0;
}

.container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pic {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
h1 {
    font-size: 2.5em;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.2em;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffc107;
}

main {
    padding: 40px 0;
    text-align: center;
}

.hero {
    background-color: #fff;
    padding: 50px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero h2 {
    font-size: 2em;
    color: #00796b;
}

.hero p {
    font-size: 1.2em;
    color: #555;
}

.footer {
    color: white;
    padding: 10px;
    font-size: 1em;
    position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #00796b;
  color: white;
  text-align: center;
}
