html, body {
    height: 100%;
    margin: 0;
}
body {
    padding: 0;
    box-sizing: border-box;
    font-family: 'Asia', sans-serif;
    background-color: #FAF8F5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.navbar {
    display: flex;
    position: relative;
    background-color: #000000;
    height: 100px;
    flex-shrink: 0;
}
.links {
    display: flex;
    gap: 20px;
    color: white;
    text-decoration: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.links a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: 0.3s;
}
.links a:hover {
    color: #eca222;
}

.links .active {
    color: #f96e04;
}
.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 20px;
    z-index: 1001;
    text-decoration: none;
}
.links.responsive {
    display: flex;
    flex-direction: column;
}
.banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}
.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.text-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}
.text-box h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}
.text-box p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}
.tiles {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}
.tile {
    background-color: #fff;
    padding: 30px;
    width: 30%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.tile h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}
.tile p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}
.tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f96e04;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.btn:hover {
    background-color: #eca222;
}
.text-box-big {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 200px;
}
.text-box-big h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}
.text-box-big p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}
.text-box-small {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 200px;
    margin-left: 600px;
    margin-right: 600px;
}
.text-box-small h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}
.text-box-small p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}