/* Reset and basic styles */
* 
{
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #E3F2FD;
    color: #333;
    margin: 0;
}

h1, h2, h3 {
    text-align: center;
    color: #01579B;
    margin-top: 30px;
    margin-bottom: 20px;
}

p {
    text-align: center;
    line-height: 1.6;
    margin-bottom: 20px;

}

ul {
    display: inline-block;
    list-style-type: disc;
    list-style-position: inside;
    text-align:left;
    
}

li{
    max-width: 800px;
}

.intro-text {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.main-content {
    text-align: center;
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
}

.navigation {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: #E3F2FD;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.navigation a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #01579B;
    display: block;
    transition: 0.3s;
}

.navigation a:hover {
    background-color: #0288D1;
}

.navigation .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 40px;
    margin-left: 50px;
}

.open-nav {
    font-size: 30px;
    cursor: pointer;
    position: fixed;
    top: 15px;
    left: 15px;
    color: #01579B;
}

.cabin-section {
    margin-bottom: 50px;
    text-align: center;
}

.slider {
    width: 100%;
    max-width: 800px;
    height: 450px;
    
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    
    margin: 0 auto;
}

.slider img {
    border-radius: 10px;
    
    display: flex;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
}

.slider img:first-child {
    display: block;
}

.slider-nav {
    text-align: center;
    margin-top: 10px;
}

.slider-nav button {
    background-color: #01579B;
    color: #FFFFFF;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
}

.slider-nav button:hover {
    background-color: #0288D1;
}

.map-container {
    text-align: center;
    margin: 20px 0;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 10px;
}

.btn {
    background-color: #01579B;
    color: #FFFFFF;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    margin: 20px auto;
    display: inline-block;
}

.btn:hover {
    background-color: #0288D1;
}

.center {
    text-align: center;
}
