body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
.container {
    width: 80%;
    margin: auto;
    padding: 20px;
}
.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.links {
    text-align: center;
    padding-bottom: 10px;
}

.links a {
    padding-left: 5px;
    padding-right: 5px;
    text-decoration: underline;
}

a {
    text-decoration: none;
}

li {
  margin: 10px 0;
}

/* ABOUT SECTION */
.about {
    display: flex;
    flex-direction: column-reverse; /* Image below text on mobile */
    align-items: center;
    gap: 20px;
}

/* Full width for mobile */
.about .image-placeholder, 
.about .text {
    width: 100%;
}

/* Ensure image scales correctly */
.about .image-placeholder img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensures the image scales proportionally */
    display: block;
}
/* Ensure image scales correctly */
.about .image-case {
    transform: scale(0.5);
    height: auto;
    object-fit: cover; /* Ensures the image scales proportionally */
    display: block;
}

/* Layout for desktops */
@media (min-width: 768px) {
    .about {
        flex-direction: row; /* Image to the left of text */
        align-items: flex-start;
    }
    
    .about .image-placeholder, 
    .about .text {
        width: 50%; /* Split width equally */
    }
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: 1fr; /* 1 column on mobile */
    gap: 10px;
}

/* 4-column gallery on desktop */
@media (min-width: 768px) {
    .gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery img {
    width: 100%;
}