html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    text-align: center;
}

body h2 {
    margin: 0;
    padding: 0;
    text-align: left;
    font-size: 35px;
}

body p {
    text-align: left;
}

body li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    body h2 {
        text-align: center;
        font-size: 35px;
    }
    body p {
        text-align: center;
    }
}


.header {
    display: grid;
    grid-template-columns: 1fr;
    margin: 20px auto;
    max-width: 1170px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background: #f9f9f9;
    text-align: left;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background: #f9f9f9;
}

.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.card h3 {
    font-size: 18px;
    margin: 10px 0;
}

.card p {
    font-size: 14px;
    color: #555;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 10px 15px;
    background: #ff6600;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    margin-top: 10px;
}

.btn:hover {
    background: #e55d00;
}

a.btn {
    color: #ffffff !important;
    text-decoration: none;
}

a.btn:hover {
    background: #e55d00;
}

.container {
    display: grid;
    grid-template-columns: 1fr;
    margin: auto;
    max-width: 1170px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background: #f9f9f9;
    text-align: left;
}

.footer p {
    text-align: center;
    color: #000000;
}

.footer a {
    color: #000000;
}

.footer a:hover,
.footer a:active {
    color: #000000;
}
