body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5; 
    margin: 0;
    padding: 0;
    background-image: url('../img/law_bar.png');
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white; 
    color: black;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge */
}

.header a {
    color: black;
    text-decoration: none;
 }

.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 150px auto; 
    max-width: 900px; 
    padding: 30px;
    background-color: #f6f6f6; 
    border-radius: 12px; 
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2); 
}

h2 {
    text-align: center;
    color: #333; 
    margin-bottom: 20px;
}

iframe {
    border: none;
    width: 100%;
    max-width: 100%;
    border-radius: 8px; /* Köşeleri yuvarlat */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Gölge efekti */
}

/* Google Form içindeki başlıkları gizle */
iframe + div {
    display: none; /* Google Form'daki başlıkları tamamen gizler */
}



footer {
    background-color: #333; /* Footer arka planı koyu gri */
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 50px;
}

footer a {
    color: #007bff; /* Footer linkleri için mavi renk */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

    