
.layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.search-section {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 10px #28a745;
    margin-bottom: 20px;
}

.content-section {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 10px #28a745;
}

.faq-section {
    background: #f8fafc;
    border-radius: 16px;
    padding: 32px 20px 24px 20px;
    box-shadow: 0 4px 24px 0 rgba(37,99,235,0.08);
    margin-bottom: 32px;
    width: 100%;
    max-width: unset;
    margin-left: 0;
    margin-right: 0;
}
.faq-title {
    font-family: YekanBakhFaNum2;
    text-align: center;
    margin-bottom: 32px;
    color: #28a745;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.faq-container {
    width: 100%;
    background: transparent;
    padding: 0;
    border-radius: 10px;
    overflow: visible;
}
.faq-item {
    border-radius: 10px;
    background: #fff;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px 0 rgba(37,99,235,0.07);
    transition: box-shadow 0.2s;
    border: 1px solid #e5e7eb;
}
.faq-item.open {
    box-shadow: 0 4px 16px 0 rgba(37,99,235,0.13);
    border-color: #28a745;
}
.faq-question {
    background: none;
    color: #28a745;
    padding: 18px 20px 18px 48px;
    cursor: pointer;
    text-align: right;
    font-size: 17px;
    border-radius: 10px;
    font-family: YekanBakhFaNum2;
    font-weight: bold;
    position: relative;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.faq-question::before {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #28a745;
    font-size: 15px;
    margin-left: 10px;
    transition: transform 0.3s;
    display: inline-block;
}
.faq-item.open .faq-question::before {
    transform: rotate(-180deg);
}
.faq-answer {
    display: none;
    padding: 0 20px 18px 20px;
    text-align: right;
    font-size: 15px;
    color: #333;
    font-family: YekanBakhFaNum2;
    line-height: 1.8;
    background: #f3f6fa;
    border-radius: 0 0 10px 10px;
    animation: fadeInFaq 0.4s;
}
.faq-item.open .faq-answer {
    display: block;
}
@keyframes fadeInFaq {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hotel-container {
    margin-top: 20px;
}

.container {
    width: 100%;
}

.columns {
    column-count: 4;
    column-gap: 20px;
}
@media (max-width: 991px) {
    .columns {
        column-count: 1;
    }
}

.city-card {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    vertical-align: top;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 10px #28a745;
    transition: transform 0.3s;
}

.city-card:hover {
    transform: translateY(-5px);
}

.city-title {
    font-size: 18px;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 15px;
    text-align: center;
    font-family: YekanBakhFaNum2;
}

.hotel-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hotel-list a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    transition: background 0.3s;
    font-family: YekanBakhFaNum2;
}

.hotel-list a:hover {
    background: #f0f9ff;
    color: #28a745;
}

.hotel-list li {
    margin: 0;
}

@media (max-width: 768px) {
    .layout {
        padding: 10px;
    }
    
    .columns {
        grid-template-columns: 1fr;
    }
}
body, .container, .layout, .content-section, .faq-section, .city-card, .hotel-list, .faq-question, .faq-answer {
    font-size: 15px !important;
}
.faq-title, .content-section > h3 {
    text-align: right !important;
    font-size: 18px !important;
    font-family: YekanBakhFaNum2;
    font-weight: bold;
    margin-bottom: 20px;
    color: #28a745;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
}
.content-section > h3 {
    margin-bottom: 20px;
    font-size: 18px !important;
    color: #28a745;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
}
