*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
background:#f4f4f4;
}

/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.logo{
font-weight:bold;
font-size:20px;
}

.nav-links{
list-style:none;
display:flex;
gap:25px;
}

.nav-links a{
text-decoration:none;
color:#333;
}

/* HERO */

.hero{
height:80vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
url("https://images.unsplash.com/photo-1546182990-dffeafbe841d");
background-size:cover;
color:white;
}

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

.hero p{
max-width:500px;
margin:auto;
margin-bottom:30px;
}

/* BUTTON */

.cta-btn{
background:#28a745;
color:white;
padding:14px 28px;
text-decoration:none;
border-radius:5px;
display:inline-block;
}

.cta-btn:hover{
background:#1e7e34;
}

/* FEATURES */

.features{
padding:60px;
text-align:center;
background:white;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
margin-top:40px;
}

.feature{
padding:20px;
background:#f9f9f9;
border-radius:8px;
}

/* CTA */

.cta{
padding:60px;
text-align:center;
background:#28a745;
color:white;
}

/* SEARCH PAGE */

.search-section{
padding:60px;
text-align:center;
}

.search-box{
margin:30px 0;
}

.search-box input{
padding:10px;
width:250px;
}

.search-box button{
padding:10px 20px;
background:#28a745;
color:white;
border:none;
}

.result-box{
margin-top:30px;
text-align:left;
display:inline-block;
}

/* FOOTER */

.footer{
background:#222;
color:white;
text-align:center;
padding:20px;
margin-top:40px;
}

.animal-card{
background:white;
padding:20px;
border-radius:8px;
margin:15px 0;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

.animal-card h2{
margin-bottom:10px;
color:#28a745;
}

.animal-card p{
margin:5px 0;
}