 /* ===== OTEL SAYFASI GENEL ===== */
.otel-main-content {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.otel-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== OTEL BANNER ===== */
.otel-banner {
    height: 550px; /* Görseli dengeli gösterir */
    background-image: url("../img/otel.png");
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.otel-overlay-box {
    position: relative;
    z-index: 2;
    padding: 25px 35px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    color: white;
    text-align: center;
    max-width: 450px;
}

.otel-overlay-box i {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

/* ===== AKORDİYON TASARIMI ===== */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    color: #333;
    font-weight: 700;
}

.accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: #333;
}

.accordion-item.active .accordion-header {
    background-color: #000;
    color: #fff;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
    padding: 20px 25px;
    border-top: 1px solid #eee;
}
