body 
{
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
    cursor: default;
}
main 
{ 
    max-width: 1000px; 
    margin: auto;
    padding: 2em; 
    display: flex;
    flex-direction: column;
}
header
{
    margin: auto;
    font-size: 0;
}
header img
{
   width: 100%;
}
.nav
{
    background:#003956; 
    padding: 25px;
    padding-right: 50px;
    display: flex;
    justify-content: right;
}
.nav-button
{
    color:white; 
    margin: 0 1em; 
    text-decoration: none;
}
footer 
{
    padding: 2em 1em;
    background: #023047;
    color: white;
    margin-top: 3em;
    text-align: center;
}
.opinion
{
    padding: 2em 1em;
    padding-right: 10%;
    background: #023047;
    color: white;
    margin-top: 3em;
    text-align: right;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.galery img
{
    width: 100%;
    border-radius: 10px;
    margin-top: 1em;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.galery p
{
    text-align: center;
    font-style: italic;
    margin-bottom: 2em;
}
h1
{ 
    color: #005f73; 
    text-align: center;
    font-size: 2em;
}

.about-section
{
    margin-bottom: 3em;
}
.quote
{
    font-size: 1.2em;
    text-align: center;
    margin-top: 1em;
}
.trips-list h2
{
    color: #005f73;
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 1em;
}
.trips-container
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2em;
}
.trip-card
{
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 300px;
    padding: 1em;
    text-align: center;
}
.trip-card:hover
{
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}
.trip-card img
{
    width: 100%;
    border-radius: 10px;
}
.trip-card h3
{
    color: #0077b6;
}
.trip-card p
{
    color: #555;
}