body {
    margin: 0;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color: white;
    padding: 0;
}

.header {
    background-image: url('header-background.jpg');
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.vision {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.vision-item {
    flex: 1;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.4);
    text-align: left; 
    color: gray;
}

.education-box {
    background-color: #BD97CB;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.boxes {
    display: flex;
    justify-content: space-around;
    width: 100%;
}
 
.box {
    width: 20%;
    height: 35vh;
    background-color: gainsboro;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: background-color 0.2s ease;
}

.box:hover {
    background-color: pink; 
    transform: scale(1.05); 
}
 
.box h1 {
font-size: 5em;
}
 
.box p {
    font-size: 1.5em;
    color: #000;
}

.pink-background {
    background-color: gray;
    color: white;
    font-weight: bold;
    font-size: 25px;
    padding: 10%;
}


h2 {
    color: #333;
    margin-bottom: 10px; 
}

p {
    font-size: 16px;
    line-height: 1.5;
}

.inspiration-section {
    position: relative;
    background-color: #f9f9f9; 
    padding: 50px 0;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('path/to/your-background-image.jpg'); 
    background-size: cover;
    opacity: 0.5; 
    z-index: -1;
}

.content {
    text-align: center;
    padding: 20px;
}

.centered-heading {
    font-weight: bold;
    font-size: 35px; 
    color: #333; 
}
.my-custom-container {
    max-width: 100%; /* Adjust as needed */
}
