body{
    font-family: Arial, sans-serif;
    margin:0;
    background:#f5f5f5;
}

header{
    background:#2c3e50;
    color:white;
    padding:20px;
    text-align:center;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:20px;
}

.map{
    width:100%;
    height:80vh;
}

.map iframe{
    width:100%;
    height:100%;
    border:0;
}

.form-tab{
    position: fixed;
    right: 0;
    top: 40%;
    background: #2c3e50;
    color: white;
    padding: 12px;
    cursor: pointer;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size:14px;
}

.form-panel{
    position: fixed;
    right: -420px;
    top: 0;
    width: 420px;
    height: 100vh;
    background: white;
    box-shadow: -3px 0 10px rgba(0,0,0,0.2);
    transition: right 0.3s;
}

.form-panel iframe{
    width:100%;
    height:100%;
    border:0;
}

.form-tab:hover + .form-panel,
.form-panel:hover{
    right:0;
}