/* Global Styles */
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

a {
    text-decoration: none;
}

.btn-custom {
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 6px;
}

.btn-green {
    background-color: #4CAF50;
    color: white;
}

.btn-yellow {
    background-color: #FFC107;
    color: black;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.card {
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.card-img-top {
    max-height: 200px;
    object-fit: cover;
}

.card-body {
    text-align: center;
    padding: 20px;
}

.card-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 10px;
}

.card-text {
    font-size: 1rem;
    color: #666;
    margin: 10px 0;
}

footer {
    background-color: #222;
    color: #ddd;
    text-align: center;
    padding: 22px 0;
}

footer a {
    color: #ddd;
    margin: 0 8px;
    font-size: 0.92rem;
}