/*Header*/

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background-color: #f0f0f0;
    min-height: 80px;
    max-height: 110px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    min-width: 80%;
    height: 100%;
}

header img {
    width: 300px;
    height: auto;
    max-width: 300px;
}

header nav {
    display: flex;
    gap: 1rem;
    font-size: 1.2rem;
}

header nav a {
    text-decoration: none;
    color: #333;
}

header nav a:hover {
    color: #3d9970;
    font-weight: bold;
}

header button {
    background-color: #FF851B;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.2rem;
}

header button:hover {
    background-color: #ffc300;
    color: #FF851B;
    font-weight: bold;
    border: 2px solid #FF851B;
    transition: 0.3s;
}

/*Body*/

body {
    font-family: Montserrat, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.section {
    margin-bottom: 2rem;
}

/* Hero Section */

.hero {
    color: #3a3a3a;
    padding: 2rem;
    text-align: center;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90%;
    max-height: 1200px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
 