/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #1e3d59;
}

.header-text h1 {
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about, .comfort {
    background-color: #1e3d59;
    color: white;
    padding: 50px 20px;
}

.about-content, .comfort-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

.about-text, .comfort-text {
    flex: 1;
}

.about-text h2, .comfort-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text h3, .comfort-text h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #6c9bcF;
}

.about-text p, .comfort-text p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-image img, .comfort-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.button {
    display: inline-block;
    background-color: #6c9bcF;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #4a7bbd;
}

.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px 20px;
    background-color: #f8f9fa;
}

.feature {
    background-color: #1e3d59;
    color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    max-width: 300px;
}

.feature h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.gallery {
    padding: 50px 20px;
    text-align: center;
    background-color: #1e3d59;
    color: white;
}

.gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.gallery-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-image {
    flex: 1;
    max-width: 300px;
}

.gallery-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
}

.gallery-image p {
    font-size: 1.1rem;
}

footer {
    background-color: #152d44;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-info {
    display: flex;
    gap: 50px;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
}

.social-icons a:hover {
    color: #6c9bcF;
}

@media (max-width: 768px) {
    .about-content, .comfort-content {
        flex-direction: column;
    }

    .features, .gallery-images {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}
