.destinations {
    padding: 100px 8%;
    background: #f8f9fb;
}

.destination-header {
    text-align: center;
    max-width: 900px;
    margin: auto;
    margin-bottom: 60px;
}

.destination-header span {
    color: #0d6efd;
    font-weight: 700;
    letter-spacing: 2px;
}

.destination-header h2 {
    font-size: 42px;
    margin: 15px 0;
    color: #222;
}

.destination-header p {
    color: #666;
    line-height: 1.8;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.destination-column h3 {
    margin-bottom: 25px;
    color: #222;
    font-size: 24px;
}

.destination-column ul {
    list-style: none;
    padding: 0;
}

.destination-column li {
    margin-bottom: 15px;
}

.destination-column a {
    color: #555;
    text-decoration: none;
    transition: .3s;
}

.destination-column a:hover {
    color: #0d6efd;
    padding-left: 8px;
}

.faq {
    padding: 100px 8%;
    background: #fff;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header span {
    color: #0d6efd;
    font-weight: 700;
    letter-spacing: 2px;
}

.faq-header h2 {
    font-size: 42px;
    margin-top: 12px;
    color: #222;
}

.faq-container {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    color: #222;
}

.faq-question i {
    font-size: 26px;
    transition: .3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer p {
    padding-bottom: 22px;
    color: #666;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.footer {
    background: #111;
    color: #fff;
    padding-top: 60px;
}

.footer-partners {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 8% 50px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-partners img {
    height: 40px;
    filter: grayscale(100%);
    transition: .3s;
}

.footer-partners img:hover {
    filter: none;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    padding: 60px 8%;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 12px;
    transition: .3s;
}

.footer-column a:hover {
    color: #fff;
    padding-left: 5px;
}

.social {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
}

.social a:hover {
    background: #0d6efd;
}

.phone {
    color: #ccc;
    line-height: 1.8;
}

.phone strong {
    display: block;
    color: #fff;
    margin-top: 8px;
}

.store {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.store img {
    height: 45px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
    padding: 30px 8%;
    color: #aaa;
    line-height: 1.8;
}