/* White Box */
.white-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: white;
    padding: 40px;
    margin-top: 120px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.white-box .text-box {
    flex: 0 1 60%;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
}

.white-box h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.white-box h2 {
    font-size: 25px;
    margin-bottom: 20px;
}

.white-box h3 {
    font-size: 20px;
    margin-top: 20px;
}

/* Contact Icons */
.contact-apps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.contact {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contact:hover {
    transform: scale(1.1);
}

.contact img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.3));
    border-radius: 10px;
}

.contact-text {
    font-size: 20px;
    margin-left: 10px;
    font-weight: 600;
    color: #000000;
    white-space: nowrap;
    position: relative;
    top: -12px;
}

.contact a {
    text-decoration: none;
}

/* Group Icons */
.group-apps {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 20px;
}

.group {
    display: flex;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.group:hover {
    transform: scale(1.1);
}

.group img {
    width: 40px;
    height: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.group-text {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    white-space: nowrap;
}

/* Map */
.white-box .map-container {
    flex: 1; 
    display: flex;
    justify-content: center;
}

.white-box .map-container iframe {
    width: 800px;
    height: 450px;
    border: 3px solid rgb(2, 2, 2);
    border-radius: 5px;
}
