*.success{
    background:#d4edda;
    color:#155724;
    padding:15px;
    margin-bottom:20px;
    border-radius:5px;
}

.error{
    background:#f8d7da;
    color:#721c24;
    padding:15px;
    margin-bottom:20px;
    border-radius:5px;
}
{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    color:#333;
}

nav{
    background:#1f4d2d;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 10%;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    color:white;
    font-weight:bold;
    font-size:24px;
}

nav ul{
    list-style:none;
    display:flex;
}

nav ul li{
    margin-left:25px;
}

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

.hero{
    height:90vh;
    background:
    linear-gradient(
        rgba(0,0,0,0.4),
        rgba(0,0,0,0.4)
    ),
    url('../images/hero.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero-content{
    color:white;
}

.hero h1{
    font-size:50px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    margin-bottom:30px;
}

.btn{
    background:#4CAF50;
    color:white;
    padding:15px 30px;
    text-decoration:none;
    border-radius:5px;
}

.section{
    padding:80px 10%;
}

.section h2{
    text-align:center;
    margin-bottom:40px;
}

.grey{
    background:#f3f3f3;
}

.cards{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.card{
    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,.15);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card h3{
    padding:20px;
}

.card p{
    padding:0 20px 20px;
}

.gallery{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));
    gap:15px;
}

.gallery img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:8px;
}

form{
    max-width:700px;
    margin:auto;
}

input,
textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
}

button{
    background:#1f4d2d;
    color:white;
    border:none;
    padding:15px 25px;
    cursor:pointer;
}

footer{
    background:#1f4d2d;
    color:white;
    text-align:center;
    padding:30px;
}
.gdpr-box{
    margin:20px 0;
}

.gdpr-label{
    display:flex;
    align-items:flex-start;
    gap:10px;
    line-height:1.6;
    font-size:14px;
}

.gdpr-label input{
    width:auto;
    margin-top:4px;
}

.gdpr-label a{
    color:#1f4d2d;
    font-weight:bold;
    text-decoration:none;
}

.gdpr-label a:hover{
    text-decoration:underline;
}
