* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

h1 {
    text-align: center;
    margin: 40px 0;
    font-weight: 500;
    font-size: 2.6em;
}

.boxes {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex: 1;
    align-items: center;
    width: 100%;
}

.box {
    flex: 1;
    height: 300px;
    width: calc(33.333% - 14px);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    cursor: pointer;
}

.box:nth-child(1) {
    background-image: url('https://res.cloudinary.com/dqpjcbip6/image/upload/v1747128979/anfaflmig1s8wynrdtoq.jpg');
}

.box:nth-child(2) {
    background-image: url('https://res.cloudinary.com/dqpjcbip6/image/upload/v1747128672/qwgw7hfdan9tfahx3qhq.jpg');
}

.box:nth-child(3) {
    background-image: url('https://res.cloudinary.com/dqpjcbip6/image/upload/v1747129120/qbjrsky4fsslfiyewo37.jpg');
}

.box:hover {
    transform: translateY(-10px);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(50, 50, 50, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay span {
    color: white;
    font-size: 24px;
}

.footer-wrapper {
    width: 100%;
    margin-top: 40px;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.footer-content {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.87em;
    text-align: center;
    line-height: 1.5;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 750px) {
    .boxes {
        flex-direction: column;
        margin-bottom: 15px;
    }
    
    .box {
        width: 100%;
    }

    footer p {
        font-size: 0.75em;
    }
}
