.card2 {
    box-shadow: 0 4px 8px rgba(43, 42, 42, 0.2);
    height: 100%;
    transition: all 0.3s ease;
}

.card2:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.hero {
    position: relative;
    height: 75vh;
    background: url('images/bg1.jpg') no-repeat center center/cover;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero .hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    margin: 0;
}

.hero p {
    font-size: 24px;
    margin: 20px 0;
}

section {
    padding: 60px 20px;
    text-align: center;
}