:root {
    --primary-color: #232426;
    --secondary-color: #f8f8f8;
    --text-color: #4e4e4e;
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    --border-radius: 5px;
}

/* Reset */
* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Başlıklar */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

p {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
    /* Göz yormayan koyu gri */
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}


/* Genel Butonlar */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    padding: 10px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-primary-custom:hover {
    background-color: #6d3e04;
}

/* Dil Dropdown */
.dropdown-menu-custom {
    border-radius: var(--border-radius);
    padding: 0.5rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

ß

/* Utility */
.text-center {
    text-align: center !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 3px;
}