body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f8f9fa;
}
.sh-ex-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    background: #f5f7fa;
}

/* App Download Section */
.sh-ex-app-section {
    background: white;
    padding: 40px;
    margin: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sh-ex-app-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.sh-ex-app-left {
    flex: 1;
}

.sh-ex-app-title {
    font-size: 32px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.sh-ex-app-description {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.sh-ex-email-form {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
}

.sh-ex-email-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-right: none;
    border-radius: 6px 0 0 6px;
    font-size: 16px;
    outline: none;
}

.sh-ex-email-input:focus {
    border-color: #f56500;
}

.sh-ex-send-button {
    background: #f56500;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 0 6px 6px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.sh-ex-send-button:hover {
    background: #e55a00;
}

.sh-ex-app-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sh-ex-app-stores {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sh-ex-store-button {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.sh-ex-store-button:hover {
    background: #2d2d2d;
}

.sh-ex-store-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    background: white;
    border-radius: 4px;
}

.sh-ex-qr-code {
    width: 80px;
    height: 80px;
    background: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    text-align: center;
}

/* Hotels Section */
.sh-ex-hotels-section {
    background: white;
    padding: 40px;
    margin: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sh-ex-hotels-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.sh-ex-hotels-title {
    font-size: 28px;
    font-weight: bold;
    color: #1a1a1a;
}

.sh-ex-slider-nav {
    display: flex;
    gap: 8px;
}

.sh-ex-nav-button {
    width: 40px;
    height: 40px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.sh-ex-nav-button:hover {
    border-color: #f56500;
    background: #f56500;
    color: white;
}

.sh-ex-slider-container {
    position: relative;
    overflow: hidden;
}

.sh-ex-slider-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: 20px;
}

.sh-ex-destination-card {
    min-width: 280px;
    height: 200px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
}

.sh-ex-destination-card:hover {
    transform: translateY(-4px);
}

.sh-ex-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sh-ex-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px;
    color: white;
}

.sh-ex-destination-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 4px;
}

.sh-ex-destination-country {
    font-size: 14px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .sh-ex-app-content {
        flex-direction: column;
        text-align: center;
    }

    .sh-ex-app-right {
        justify-content: center;
    }

    .sh-ex-destination-card {
        min-width: 240px;
    }
}