/* General styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}
/* TCMB logosu için stil */

.tcbm-section {
    display: flex; /* İçerikleri yan yana sıralar */
    align-items: center; /* Yatayda ortalar */
}

.tcmb-logo {
    width: 50px; /* Logonun genişliğini ayarlayın */
    height: auto;
    margin-right: 15px; /* Logonun sağ tarafına boşluk ekler */
}

.tcmb-text {
    color: black; /* Metin rengini siyah yapar */
}

/* Container and content styles */
.container {
    background: url('img/1920-2.png') no-repeat center center/cover;
    background-clip: padding-box;
    padding: 2px;
    height: calc(100vh - 4px); /* 2px üstten ve alttan boşluk bırak */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    padding-left: 40px; /* Soldan boşluk bırak */
    padding-top: 80px; /* Arka planın düzgün görünmesi için boşluk bırak */
}

.content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    color: white;
    max-width: 600px; /* İçeriği daha dar tut */
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Footer styles */
footer {
    background-color: #f9f9f9;
    padding: 40px 20px;
    border-top: 2px solid #e0e0e0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    padding: 20px;
    min-width: 250px;
}

.footer-logo {
    max-width: 150px;
}

.footer-section h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.footer-section p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.email {
    color: #003cff;
    text-decoration: none;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.footer-links a {
    color: #555;
    font-size: 12px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ff6600;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social a img {
    width: 24px;
    height: 24px;
}

.footer-social a:hover img {
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }

    p {
        font-size: 14px;
    }

    .button {
        padding: 8px 16px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 22px;
    }

    p {
        font-size: 12px;
    }

    .button {
        padding: 6px 12px;
        font-size: 14px;
    }
}
