    body {
        background: #f5f5f5;
    }

    .hero-img {
        width: 100%;
        height: 60vh;
        object-fit: cover;
    }

    @media (max-width: 768px) {
        .img-landscape { display: none; }
        .img-portrait { display: block; }
    }
    @media (min-width: 769px) {
        .img-landscape { display: block; }
        .img-portrait { display: none; }
    }

    .hero-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        background: rgba(0, 0, 0, 0.45);
        padding: 25px 30px;
        border-radius: 8px;
        width: 90%;
        max-width: 800px;
        text-align: center;
    }

    footer {
        background: #222;
        color: white;
        padding: 30px 10px;
    }

    footer h5 {
        color: #ddd;
        margin-bottom: 8px;
    }
	
	.image-box {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.image-box img {
    width: 100%;
    border-radius: 10px;
    border: 3px solid #eee;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .image-text-flex {
        display: flex;
        gap: 30px;
        align-items: center;
    }
    .image-text-flex img {
        max-width: 45%;
    }
}