body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f9f9f9;
}

header {
    background-color: #4CAF50;
    padding: 20px;
    color: white;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.featured {
    margin: 20px auto;
    max-width: 1200px;
}

.pet-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.pet {
    flex: 1 0 21%;
    max-width: 220px;
    border: 2px solid #ddd;
    padding: 15px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.2s ease;
}

.pet:hover {
    transform: translateY(-5px);
}

.pet img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.pet p {
    margin: 8px 0;
    font-size: 14px;
}

button {
    background-color: #008CBA;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #005f7a;
}

footer {
    background: #62af56;
    color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 160px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 400px;
}

.footer-left p,
.footer-left h2 {
    margin: 10px 0;
}
