@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'poppins';
}
.Contact{
    position: relative;
    min-height: 100vh;
    padding-top: 10px;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #f5f5f5;
}
.Contact .content{
    max-width: 800px;
    text-align: center;
}
.Contact .content h2{
    font-size: 36px;
    font-weight: 500;
    color: #ff6600;
}
.Contact .content p{
    font-weight: 500;
    color: #555555
}
.container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center ;
    margin-top: 30px;
}
.container .contact-info{
    width: 50%;
    display: flex;
}
iframe{
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}
.map{
    flex: 1;
}

.container{
    width: 80%;
    max-width: 1200px;
    display: flex;
    gap: 2rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.contact-info{
    flex: 1;
    animation: fadeInRight 2s ease;
}
.contact-info h3{
    margin-bottom: 1rem;
}
.contact-info p{
    margin-bottom: 0.5rem;
}
.box{
    flex: 1;
}
.button{
    background-color: #f5f5f5;
    text-decoration: none;
    padding-bottom: 60px;
}
button{
    display: block;
    margin: auto;
    background-color: #ff4500;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 23px;
    border: none;
    cursor: pointer;
    justify-content: center;
}
button:hover{
    background-color: #ff6437;
}
@media (max-width:768px){
    .content h2{
        font-size: 18px;
    }
    .content p{
        font-weight: normal;
    }
    .Contact{
        padding-left: 10px;
        padding-right: 10px;
    }
    .container{
        padding: 0px;
        width: 100%;
    }
}
@keyframes fadeInRight{
    0%{
        opacity: 0;
        transform: translateY(50px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}
