body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f7f7f7;
}

.container {
    width: 100%;
    max-width: 600px;
    text-align: center;
    padding: 20px;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.brand-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.intro-text {
    max-width: 500px;
}

.contact-section {
    margin-bottom: 20px;
}

.contact-icons i {
    margin: 0 10px;
    cursor: pointer;
}

.instagram-widget,
.custom-content {
    background-color: #fff;
    padding: 20px;
    margin: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.image-item img {
    width: 100%;
    height: auto;
    display: block;
}
