.profile-body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    padding: 20px;
    display: flex;
    justify-content: center;
}
.profile-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 profiles per row */
    gap: 20px;
    max-width: 100%;
}
.profile {
    background-color: white;
    color: black;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    border-left: 6px solid maroon; /* Maroon border on the left */
}
.profile img {
    width: 150px;
    height: 150px;
    border-radius: 20%;
    object-fit: cover;
    margin-left: auto;
    border: 3px solid maroon;
}
.profile h2 {
    margin-top: 0;
    font-size: 1.5rem;
    color: maroon;
}
.profile p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 5px 0;
}
.icon {
    font-size: 1.2rem;
    margin-right: 8px;
    color: maroon;
}
a {
    color: maroon;
    text-decoration: none;
}
@media (max-width: 768px) {
    .profile-container {
        grid-template-columns: 1fr; /* Stack profiles on smaller screens */
    }
}

.invitation {
    background: #ffcc80;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 850px;
    margin: auto;
}
h1 {
    color: #d32f2f;
}
p {
    color: #5d4037;
    font-size: 18px;
}
.contact {
    background: #ff7043;
    padding: 15px;
    border-radius: 10px;
    color: white;
    margin-top: 20px;
}
.contact p {
    margin: 5px 0;
}