body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    overflow-x: hidden; /* Prevents horizontal scrolling */
    width: 100vw; /* Ensures screen width remains 100% */
    box-sizing: border-box; /* Ensures padding doesn't affect total width */
}

header, section, footer {
    max-width: 100%;
    box-sizing: border-box;
}

.team {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 100%; /* Prevents overflow */
}

header {
    background: #ffb4db50;
    color: #fff;
    padding: 20px;
    text-align: center;
}

section {
    padding: 20px;
    margin: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #ffb4db;
	text-shadow: 
            -1px -1px 0 #000,  
             1px -1px 0 #000,
            -1px 1px 0 #000,
             1px 1px 0 #000; /* יצירת אפקט של מסגרת */
}

h1 {
    color: #ffb4db;
}

footer {
    text-align: center;
    padding: 10px;
    background: #333;
    color: #fff;
    position: relative;
    bottom: 0;
    width: 100%;
}

.team-member {
    margin: 15px;
    padding: 15px;
    background: #e7e7e7;
    border-radius: 5px;
    flex: 1 1 200px; /* Makes the member boxes responsive */
}

#map {
    height: 300px; /* Height of the map */
    width: 100%; /* Width of the map */
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Define height and width for iframes */
iframe {
    width: 70%;
	height: 500px;
}

/* Mobile design */
@media (max-width: 768px) {
    iframe {
		width: 100%;
        height: 350px; /* Fixed height for mobile */
    }
}
