body {
    background-color: #D1B9B5;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo-container {
    position: relative;
}
.logo {
    max-width: 240px;
    height: auto;
}
h1 {
    font-size: 36px;
    font-weight: bold;
    color: #1c2448;
    font-family: "Poppins", Sans-serif;
}
.email a, .phone a{
    text-align: center;
    color: #1c2448;
    font-family: "Poppins", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
}
.social {
    margin: 20px 0;
}
.icon-custom {
    font-size: 25px !important;
    color: white;
    background-color: #1F5C73;
    border-radius: 55px;
    padding-top: 13px;
    padding-bottom: 13px;
    width: 50px;
}
.btn-section {
    margin-top: 40px;
}
.btn-custom {
    background-color: #1F5C73;
    font-family: "Poppins", Sans-serif;
    font-size: 17px;
    font-weight: 400;
    border:1px solid white;
    border-radius: 50px 50px 50px 50px;
    padding: 15px 90px;
    color: white;
    text-decoration: none;
}
@media (max-width: 768px) {
    h1 { 
        font-size: 25px;
    }
    .email a, .phone a{
        font-size: 17px;
    }
    .logo-container {
        position: sticky;
        top: 0;
        padding: 10px;
        width: 100%;
        text-align: center;
    }
}