body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: #2C3E50; /* Lacivert renk */
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 24px;
}

nav {
    background-color: #2C3E50; /* Lacivert renk */
    text-align: center;
    padding: 10px 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 800px; /* Genişliği artırdım */
    max-height: 90vh;
    overflow-y: auto;
    margin: 20px auto;
}

h2 {
    color: #333;
}

button {
    padding: 15px 20px; /* Butonları büyütmek için artırıldı */
    background-color: #3498DB; /* Açık mavi renk */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0; /* Aralığı genişlettim */
    font-size: 16px; /* Yazı boyutunu artırdım */
}

button:hover {
    background-color: #2980B9; /* Hover için daha koyu mavi renk */
}

.contact-person {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
}

.contact-info {
    text-align: left;
}
#translateButton {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #3498DB;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#translateButton:hover {
    background-color: #2980B9;
}
