body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f5f5f7;
    margin: 0;
    padding: 0;
    color: #1d1d1f;
  }
.container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

/* Referans Alanı */
.references {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    margin-bottom: 20px;
    transition: height 0.3s ease;
}

.references:hover {
    height: 100px;
    /* Fare üzerine gelince boyutunu artırır */
}

.references h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 22px;
    color: #1d1d1f;
}

.references .slider {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: slide 60s linear infinite;
    transition: all 0.3s ease;
}

.references img {
    max-height: 50px;
    margin: 0 20px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.references img:hover {
    opacity: 1;
}

@keyframes slide {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.header {
    background-color: #f5f5f7;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    text-align: center;
}

.header h1 {
    font-size: 20px;
    margin: 0;
    color: #1d1d1f;
}

.buttons-row {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 30px;
    scrollbar-width: thin;
}

.buttons-row::-webkit-scrollbar {
    height: 8px;
}

.buttons-row::-webkit-scrollbar-thumb {
    background-color: #d2d2d7;
    border-radius: 10px;
}

.date-button {
    flex: 0 0 auto;
    background-color: #f5f5f7;
    color: #1d1d1f;
    padding: 15px 20px;
    border: 1px solid #d2d2d7;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    margin-right: 20px;
    white-space: nowrap;
}

.date-button:last-child {
    margin-right: 0;
}

.date-button:hover {
    background-color: #e0e0e0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.section {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.section p {
    font-size: 16px;
    line-height: 1.6;
    color: #6e6e73;
}

.ucretsiz {
    display: inline-block;
    padding: 8px 15px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.ucretsiz:hover {
    background-color: #0056b3;
}

.teklif {
    display: inline-block;
    padding: 8px 15px;
    background-color: #FFAE00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.teklif:hover {
    background-color: #FFCE00;
}