* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    color: #222;
}

.container {
    max-width: 950px;
    margin: 40px auto;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 14px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
    text-align: center;
}

h1 {
    margin: 0 0 15px;
    font-size: 52px;
    color: #e60000;
}

.subtitle {
    font-size: 18px;
    margin: 0 0 10px;
}

.address {
    font-size: 18px;
    margin: 0 0 25px;
}

.images {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.images img {
    width: 100%;
    max-width: 340px;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    padding: 14px 20px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

.call {
    background-color: #e60000;
}

.whatsapp {
    background-color: #25D366;
}

.location {
    background-color: #007bff;
}

@media (max-width: 600px) {
    h1 {
        font-size: 36px;
    }

    .subtitle,
    .address {
        font-size: 16px;
    }

    .button {
        width: 100%;
        max-width: 320px;
    }
}
