body {
    font-family: 'Roboto', sans-serif;
    background-color: #E6E1DE;
    margin: 0;
    padding: 0;
}
.container70 {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
}
.header70 {
    text-align: center;
    position: relative;
}
.header70 img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.header70 h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3em;
    font-family: "Protest Guerrilla", sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.content70 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}
.contact-info70, .contact-form70 {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 48%;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    background: linear-gradient(135deg, #e19a6e  , #c09e49);
    color: rgb(255, 255, 255);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.contact-info70:hover, .contact-form70:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.contact-info70 h2, .contact-form70 h2 {
    margin-top: 0;
    font-family: "Oleo Script", system-ui;
    font-size: 1.8em;
    color: white;
}
.contact-info70 p {
    margin: 10px 0;
    color: white;
    font-family: "Aref Ruqaa", system-ui;
}
.contact-info70 i {
    margin-right: 10px;
    color: white;
}
.contact-info70 a {
    color: white;
    text-decoration: none;
}
.contact-info70 a:hover {
    text-decoration: underline;
}
.contact-info70 .social-icons {
    margin-top: 20px;
}
.contact-info .social-icons a {
    margin-right: 10px;
    color: white;
    font-size: 1.5em;
}
.contact-form70 input, .contact-form70 textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-size: 1em;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: "Aref Ruqaa", system-ui;
}
.contact-form70 input:focus, .contact-form70 textarea:focus {
    border-color: #ff6f61;
    outline: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.contact-form70 button {
    background: linear-gradient(to right, #ff6f61, #de6262);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
    font-size: 1em;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.contact-form70 button:hover {
    background: linear-gradient(to right, #de6262, #ff6f61);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.map {
    margin-top: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 1);
    width:100%;
    height:400px ;
}
.map img {
    
    height: auto;
    border-radius: 10px;
   
}
@media (max-width: 768px) {
    .contact-info70, .contact-form70 {
        width: 100%;
    }

    .map {

        width:100% ;
        height:300px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 1);
    }

    .header70 h1 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 3em;
        font-family: 'Playfair Display', serif;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
}