* {
    box-sizing: border-box;
}

body {
    margin-top: 2%;
    margin-left: 5%;
    margin-right: 5%;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    color: #444;
    font-family: 'Questrial', sans-serif;
}

body, html {
    overflow-x: hidden;
}

/* Başlıklar */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #444;
}

h1 {
    font-size: 3em;
}

h2 {
    font-size: 2.5em;
}

h3 {
    font-size: 1.6875em;
    line-height: 1.8;
    font-weight: 600;
}

h4 {
    font-size: 1.125em;
    font-weight: 600;
}

h5 {
    margin-top : 3em;
    font-size: 1.125em;
    font-weight: 500;
}

h6 {
    font-size: 1.25em;
}

p, ul, li, table, tr, td {
    margin: 1em 0;
    font-weight: 300;
    font-size: 100%;
    line-height: 1.5;
    color: #444;
}

/* Liste ve liste elemanları */
ul {
    padding-left: 40px;
    list-style: disc outside;
}

li {
    border-color: #ccc;
}

/* Link yapısı */
a {
    color: #1bb0ce;
    text-decoration: none;
    transition: background-color 150ms linear, color 150ms linear;
}

main{
    margin-bottom: 2%;
    margin-top: 2%;
    border-bottom: 2px solid #aaa;
    border-top: 2px solid #aaa;
}

footer {
    font-size: 17px;
    margin-bottom: 5%;
}

.main-logo {
    width: 200px;
    height: auto;
    cursor: pointer;
}

/* Ensure the table fits within the container */
.partner-table {
    width: 100%; /* Make the table take up the full width of its container */
    table-layout: auto; /* Allows flexible table width based on content */
    border-collapse: collapse;
    overflow-x: auto; /* Allow horizontal scrolling if the table overflows */
    display: block; /* Makes the table responsive by enabling scrolling */
}

/* Adjust column and table cell styles */
th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    word-wrap: break-word; /* Ensure text wraps in smaller columns */
}

/* Optional: adjust font size for smaller screens */
@media (max-width: 768px) {
    th, td {
        font-size: 0.875em; /* Reduce font size for better readability on small screens */
    }
    .partner-table {
        font-size: 0.9em; /* General font size adjustment for the table */
    }
}

.col1 {
    width: 20%;
}

.col2 {
    width: 60%;
}

a {
    text-wrap:nowrap;
}