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

body {
    font-family: Arial, sans-serif;
}

.full-width-background {
    background-image: url('external_images/1.jpg'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    height: 100vh; /* Full height */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.quote {
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Optional: semi-transparent background for readability */
    border-radius: 10px;
}

.image-layout {
    display: flex;
    justify-content: space-between;
    margin: 20px;
}

.left-images {
    display: flex;
    flex-direction: column;
}

.left-images img {
    width: 100%; /* Adjust as needed */
    margin-bottom: 10px; /* Space between images */
}

.right-image img {
    width: 100%; /* Adjust as needed */
}

.center-image {
    text-align: center;
    margin: 20px 0;
}

.center-image img {
    width: 50%; /* Adjust as needed */
}