body{
    margin:0;
    background:#000;
    color:#fff;
    font-family:Arial, sans-serif;
}

/* Main Section */
.page-section{
    width:100%;
    padding:7% 6%;
}

h4{
    font-weight:800;
    font-size:3rem;
    margin-bottom:10px;
}

h5{
    font-weight:600;
    font-size:1.8rem;
    margin-bottom: 15px;
}
b{
    color:blue;
}
h5::after
{
    content: " :";
}
ul{
    margin-left: 30px;
}

/* Grid Layout */
.main{
    display:flex;
    gap:4%;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.left, .right{
    flex:1;
    min-width:300px;
}

/* Form Styling */
form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

label{
    font-size:0.9rem;
    font-weight:bold;
}

input, textarea{
    padding:10px;
    background:#111;
    border:1px solid #444;
    color:#fff;
    border-radius:5px;
    width:100%;
    font-size:0.9rem;
}

textarea{
    height:120px;
    resize:none;
}

.submit-btn{
    background:blue;
    border:none;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.submit-btn:hover{
    background:rgb(1, 1, 113);
}

/* Right Info Box */
.right p{
    font-size:0.85rem;
    line-height:1.5;
    margin:8px 0;
}

.lower{
    margin-top:15px;
}

/* Map */
.map-container{
    width:100%;
    height:350px;
    overflow:hidden;
}

.map-container iframe{
    width:100%;
    height:100%;
    border:0;
}

/* Mobile Fix */
@media (max-width:768px){
    h4{
        font-size:2rem;
    }
    .page-section{
        padding:8% 5%;
    }
}
