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


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


header nav {
    background-color: #333;
    padding: 1rem;
}

header nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 1rem;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}


#hero {
    background-color: #1F442E;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.5rem;
}


#accommodations {
    padding: 40px 20px;
}

.accommodation-category {
    margin-bottom: 40px;
}

.accommodation-category h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1F442E;
}

.accommodation-item {
    display: flex;
    margin-bottom: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.accommodation-item img {
    width: 250px;
    height: auto;
    margin-right: 20px;
    border-radius: 8px;
}

.accommodation-details h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.accommodation-details p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.accommodation-details a {
    background-color: #1F442E;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
}

.accommodation-details a:hover {
    background-color: #1F442E;
}


#other-pages {
    text-align: center;
    margin-top: 40px;
}

#other-pages p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

#other-pages ul {
    list-style-type: none;
    padding: 0;
}

#other-pages ul li {
    margin: 10px 0;
}

#other-pages a {
    color: #1F442E;
    font-size: 1.2rem;
    text-decoration: none;
}

#other-pages a:hover {
    text-decoration: underline;
}


footer {
    text-align: center;
    padding: 20px 25px;
    background-color: #333;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.nav-links{
     display: flex;
     list-style-type: none;
     justify-content: space-between;
     align-items: center;
     gap: 25px;
}

.nav-links li a{
    text-decoration: none;
    color: white;
}

.nav-links li a:hover{
    
    color: #ff6347;
}


@media (max-width: 768px) {
    .accommodation-item {
        flex-direction: column;
        align-items: center;
    }

    .accommodation-item img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .accommodation-category h2 {
        font-size: 2rem;
    }

    .accommodation-details h3 {
        font-size: 1.8rem;
    }

    .accommodation-details p {
        font-size: 1rem;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    #hero p {
        font-size: 1.2rem;
    }

    #other-pages p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
   
     header nav ul {
        flex-direction: column;
        align-items: center;
    }

    .accommodation-details h3 {
        font-size: 1.6rem;
    }

    .accommodation-details p {
        font-size: 1rem;
    }

    #hero h1 {
        font-size: 2rem;
    }

    #hero p {
        font-size: 1rem;
    }

     footer{
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    .nav-links{
     display: flex;
     list-style-type: none;
     flex-direction: column;
     align-items: center;
     gap: 5px;
}
}