* {
     margin: 0px;
     padding: 0px;
     box-sizing: border-box;
}
html{
	height:100%;
}
main{
	flex:1;
}
 body {
	 height:100%;
     display: flex;
     flex-direction: column;
     font-family: "Arial", sans-serif;
     background-color: #f9f9f9;
     line-height: 1.6;
     direction: rtl;
}
 header {
     background-color: #ffcc99;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-wrap: wrap;
     position: relative;
}
 .logo {
     position: absolute;
     right: 20px;
     height: 70px;
     width: auto;
}
 .title-box {
     text-align: center;
}
 .title-box h1 {
     font-size: 2em;
     color: #cc5200;
}
 .title-box p {
     font-size: 1em;
     color: #333;
}
 nav {
     background-color: #ffb366;
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 20px;
     padding: 10px;
}
 nav a {
     color: white;
     text-decoration: none;
     font-weight: bold;
}
 nav a:hover {
     text-decoration: underline;
}
 .hero {
     background-color: #fff0e6;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: space-between;
     height: 400px;
     padding: 40px 20px;
     text-align: center;
}
 .hero h2 {
     font-size: 2em;
     margin-bottom: 20px;
     color: #cc5200;
}
 .hero img {
     width: 300px;
     border-radius: 15px;
     margin-bottom: 20px;
}
 .hero button {
     background-color: #e65c00;
     color: white;
     border: none;
     padding: 10px 20px;
     font-size: 1em;
     border-radius: 10px;
     cursor: pointer;
}
 .hero button:hover {
     background-color: #cc5200;
}
 .details{
     display: block;
     text-align: center;
     margin-top:30px;
     margin-bottom:50px;
}
 .animals-gallery {
     text-align: center;
}
 .animal-list{
     display:flex;
     flex-wrap:wrap;
     justify-content: center;
}
 .animals-gallery h2 {
     color: #333;
}
 .animal-card {
     display: inline-block;
     width: 300px;
     height: 50%;
     margin: 15px;
     padding: 15px;
     border: 1px solid #ddd;
     border-radius: 15px;
     background-color: #fff;
     vertical-align: top;
     box-sizing: border-box;
}
 .animal-card img {
     width: 100%;
     height:200px;
     object-fit: cover;
     border-radius: 10px;
     display: block
}
 .animal-card h3 {
     margin-top: 10px;
     color: #e65c00;
}
 .animal-card p {
     font-size: 0.9em;
     color: #666;
}
 .animal-card a {
     display: inline-block;
     margin-top: 10px;
     color: #e65c00;
     font-weight: bold;
}
 .animals-gallery button {
     background-color: #e65c00;
     color: white;
     border: none;
     padding: 10px 20px;
     font-size: 1em;
     border-radius: 10px;
     cursor: pointer;
     margin-top:20px;
     margin-bottom:80px;
}
 .animals-gallery button:hover {
     background-color: #cc5200;
}
 .success-stories {
     background-color: #fff;
     text-align: center;
}
 .success-stories h2 {
     margin-bottom: 15px;
     color: #333;
}
 .success-stories p {
     margin: 10px 0;
     font-style: italic;
}
 .success-stories img {
     width: 300px;
     border-radius: 15px;
     margin-bottom: 20px;
}
 .side-banner {
     position: fixed;
     left: 0;
     top: 200px;
     width: 200px;
     background-color: #fff0e6;
     padding: 15px;
     border-top-right-radius: 15px;
     border-bottom-right-radius: 15px;
     box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
     font-size: 0.9em;
     line-height: 1.5;
     z-index: 1000;
}
 .side-banner h3 {
     margin-top: 10px;
     color: #cc5200;
     font-size: 1.1em;
}
 .side-banner ol {
     padding-right: 15px;
     margin: 0 0 10px;
     text-align: right;
}
 footer {
     background-color: #ffb366;
     color: white;
     text-align: center;
     padding: 60px;
     font-size: 1em;
     position:relative;
}
 footer p {
     max-width: 90%;
     margin: auto;
     line-height: 1.6;
}

 @media screen and (max-width: 600px) {
     header {
         flex-direction: column;
         align-items: center;
    }
     .logo {
         position: static;
         margin-bottom: 10px;
         width: 40%;
         height: auto;
    }
    .title-box {
         text-align: center;
    }
     .title-box h1 {
         font-size: 150%;
    }
    nav {
         flex-direction: column;
         gap: 10px;
         text-align: center;
    }
    .hero {
         height: auto;
         padding: 20px;
    }
     .hero img {
         width: 80%;
    }
     .animals-gallery h2{
         font-size: 120%;
    }
     .animal-card {
         width: 90%;
         margin: 5% auto;
    }
     .animal-card img{
         height:auto;
    }
     .success-stories img {
         width: 80%;
    }
    .side-banner {
         display: none;
    }
     footer {
         padding: 40px 10px;
    }
}
 @media screen and (max-width: 400px) {
     footer {
         font-size:100%;
    }
}
 @media screen and (max-width: 200px) {
     footer {
         font-size:70%;
    }
}
 @media screen and (max-width: 150px) {
     footer {
         font-size:50%;
    }
}




