html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f1f1f1;
    padding: 20px 20px;
    color: white;
}

header .logo {
    font-size: 24px;
}

header .contact-info {
    display: flex;
    align-items: center;
}

header .contact-info .language-selector {
    margin-right: 20px;
}

header .contact-info .language-selector select {
    padding: 5px;
    font-size: 16px;
}

header .contact-info .order-now {
    text-align: right;
}

header .contact-info .order-now p {
    margin: 0;
}

main {
    padding: 20px;
}

.intro {
    width: 100%;
    overflow: hidden;
    position: relative; 
}

.intro .image-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.intro img {
    width: 100%;
    height: auto;
    display: block;
}

.intro .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    width: 33%; 
    padding: 10%; 
    text-align: center;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
}

.intro .overlay p {
    font-size: 3vw;
    margin: 20px 0;
}

.intro .overlay p:first-child {
    margin-top: 0; 
}

.intro .overlay p:last-child {
    margin-bottom: 0;
}

.intro .overlay .phone-link {
    text-decoration: none;
    color: #00a2e8; 
    display: inline-block; 
    font-size: 2vw; 
    margin-top: 10px; 
}

.details {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.details > div {
    width: 45%;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.details h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.price-list,
.facilities ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.price-list li,
.facilities li {
    background-color: #fff;
    margin: 10px 0;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-list li:nth-child(even),
.facilities li:nth-child(even) {
    background-color: #f1f1f1;
}

.map {
    text-align: center;
    margin: 20px 0;
    padding: 50px;
    border: 1px solid #000;
    width: 100%;
    box-sizing: border-box;
}

.map iframe {
    width: 100%;
    height: 500px;
}

footer {
    background-color: #f1f1f1;
    padding: 20px;
    text-align: center;
}

footer .contact-info p {
    margin: 5px 0;
}

footer .contact-info a {
    text-decoration: none;
    color: #00a2e8;
}