* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, sans-serif !important;
    background-color: #f7f9fc !important;
}
.section-header {
    text-align: center;
    font-size: 24px;
    color: #0099a9;
    font-weight: bold;
    margin-top: 20px;
}
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    min-width: 267px;
    margin-right: 20px;
    height: 472px;
}
.card.visible {
    opacity: 1;
    transform: translateY(0);
}
.card img {
    width: 100%;
    height: 277px;
    object-fit: cover;
}
.card-content {
    padding: 7px;
}
.card-title {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin-bottom: 8px;
}
.card-price {
    font-size: 16px;
    color: #0099a9;
    font-weight: bold;
    margin-bottom: 8px;
}
.card-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}
.button-group {
    display: flex;
    gap: 10px;
}
.button {
   
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    flex: 1;
    text-decoration: none;
}
.button-primary {
    background-color: #0099a9;
    color: #fff;
}
.button-secondary {
    background-color: #ff5a5f;
    color: #fff;
}



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

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50px;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
}

header {
    background-color: #28a745;
    color: white;
    padding: 1rem;
    text-align: center;
}

section {
    margin-bottom: 2rem;
}

h2 {
    color: #007bff;
}
